| Package | Description |
|---|---|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JDBCType
Defines the constants that are used to identify generic SQL types, called JDBC types.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
CallableStatement.registerOutParameter(int parameterIndex, SQLType
Registers the OUT parameter in ordinal position
parameterIndex to the JDBC type
sqlType.
|
default void |
CallableStatement.registerOutParameter(int parameterIndex, SQLType
Registers the parameter in ordinal position
parameterIndex to be of JDBC type
sqlType.
|
default void |
CallableStatement.registerOutParameter(int parameterIndex, SQLType
Registers the designated output parameter.
|
default void |
CallableStatement.registerOutParameter(String
Registers the OUT parameter named
parameterName to the JDBC type
sqlType.
|
default void |
CallableStatement.registerOutParameter(String
Registers the parameter named
parameterName to be of JDBC type
sqlType.
|
default void |
CallableStatement.registerOutParameter(String
Registers the designated output parameter.
|
default void |
PreparedStatement.setObject(int parameterIndex, Object
Sets the value of the designated parameter with the given object.
|
default void |
PreparedStatement.setObject(int parameterIndex, Object
Sets the value of the designated parameter with the given object.
|
default void |
CallableStatement.setObject(String
Sets the value of the designated parameter with the given object.
|
default void |
CallableStatement.setObject(String
Sets the value of the designated parameter with the given object.
|
default void |
ResultSet.updateObject(int columnIndex, Object
Updates the designated column with an
Object value.
|
default void |
ResultSet.updateObject(int columnIndex, Object
Updates the designated column with an
Object value.
|
default void |
ResultSet.updateObject(String
Updates the designated column with an
Object value.
|
default void |
ResultSet.updateObject(String
Updates the designated column with an
Object value.
|
default void |
SQLOutput.writeObject(Object
Writes to the stream the data contained in the given object.
|