Modifier and Type | Method and Description |
---|---|
Date |
JDBCResultSet.getDate(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
JDBCCallableStatement.getDate(int parameterIndex)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object. |
Date |
JDBCResultSet.getDate(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
JDBCCallableStatement.getDate(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
Date |
JDBCResultSet.getDate(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
JDBCCallableStatement.getDate(java.lang.String parameterName)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object. |
Date |
JDBCResultSet.getDate(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
JDBCCallableStatement.getDate(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
Modifier and Type | Method and Description |
---|---|
void |
JDBCPreparedStatement.setDate(int parameterIndex,
Date x)
(JDBC4 clarification:)
Sets the designated parameter to the given
java.sql.Date value
using the default time zone of the virtual machine that is running
the application. |
void |
JDBCPreparedStatement.setDate(int parameterIndex,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
JDBCCallableStatement.setDate(java.lang.String parameterName,
Date x)
Sets the designated parameter to the given
java.sql.Date value
(JDBC4 clarification:) |
void |
JDBCCallableStatement.setDate(java.lang.String parameterName,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
JDBCResultSet.updateDate(int columnIndex,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
JDBCResultSet.updateDate(java.lang.String columnLabel,
Date x)
Updates the designated column with a
java.sql.Date value. |
Modifier and Type | Method and Description |
---|---|
Date |
DateColumnWrapper.get(int index) |
Date |
DateColumnImpl.get(int index) |
Date |
DateColumn.get(int index) |
Modifier and Type | Method and Description |
---|---|
Date |
Formatter.SqlDateFormatter.doParse(java.lang.String value) |
Date |
Formatter.SqlDateFormatter.doParseFromLong(long value) |
Modifier and Type | Method and Description |
---|---|
Date |
JsonDateTimeSerializers.DefaultSqlDateDeserializer.deserialize(JsonParser jp,
DeserializationContext ctxt) |
Date |
JsonDateTimeSerializers.SqlDateDeserializer.deserialize(JsonParser jp,
DeserializationContext ctxt) |
Modifier and Type | Method and Description |
---|---|
void |
JsonDateTimeSerializers.DefaultSqlDateSerializer.serialize(Date value,
JsonGenerator jgen,
SerializerProvider provider) |
void |
JsonDateTimeSerializers.SqlDateSerializer.serialize(Date value,
JsonGenerator jgen,
SerializerProvider provider) |
Modifier and Type | Method and Description |
---|---|
Date |
DatabaseCallableConnectionStatement.getDate(int parameterIndex) |
Date |
DatabaseCallableConnectionStatement.getDate(int parameterIndex,
java.util.Calendar cal) |
Date |
DatabaseCallableConnectionStatement.getDate(java.lang.String parameterName) |
Date |
DatabaseCallableConnectionStatement.getDate(java.lang.String parameterName,
java.util.Calendar cal) |
Modifier and Type | Method and Description |
---|---|
void |
DatabasePreparedConnectionStatement.setDate(int parameterIndex,
Date x) |
void |
DatabasePreparedConnectionStatement.setDate(int parameterIndex,
Date x,
java.util.Calendar cal) |
void |
DatabaseCallableConnectionStatement.setDate(java.lang.String parameterName,
Date x) |
void |
DatabaseCallableConnectionStatement.setDate(java.lang.String parameterName,
Date x,
java.util.Calendar cal) |
Modifier and Type | Method and Description |
---|---|
Date |
RowSet.getDate(int columnIndex) |
Date |
RowSet.getDate(int columnIndex,
java.util.Calendar cal) |
Date |
RowSet.getDate(java.lang.String columnName) |
Date |
RowSet.getDate(java.lang.String columnName,
java.util.Calendar cal) |
Modifier and Type | Method and Description |
---|---|
void |
RowSet.updateDate(int columnIndex,
Date x) |
void |
RowSet.updateDate(java.lang.String columnName,
Date x) |
Modifier and Type | Method and Description |
---|---|
Date |
SwaggerTypeResolver.SwaggerJsonSqlDateDeserializer.deserialize(JsonParser jp,
DeserializationContext ctxt) |
Modifier and Type | Method and Description |
---|---|
void |
SwaggerTypeResolver.SwaggerJsonSqlDateSerializer.serialize(Date value,
JsonGenerator jgen,
SerializerProvider provider) |
Modifier and Type | Method and Description |
---|---|
Date |
ResultSet.getDate(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
CallableStatement.getDate(int parameterIndex)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object. |
Date |
ResultSet.getDate(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
CallableStatement.getDate(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
Date |
ResultSet.getDate(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
CallableStatement.getDate(java.lang.String parameterName)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object. |
Date |
ResultSet.getDate(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
CallableStatement.getDate(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
Date |
SQLInput.readDate()
Reads the next attribute in the stream and returns it as a
java.sql.Date object. |
static Date |
Date.valueOf(java.lang.String s)
Converts a string in JDBC date escape format to
a
Date value. |
Modifier and Type | Method and Description |
---|---|
void |
PreparedStatement.setDate(int parameterIndex,
Date x)
Sets the designated parameter to the given
java.sql.Date value
using the default time zone of the virtual machine that is running
the application. |
void |
PreparedStatement.setDate(int parameterIndex,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
CallableStatement.setDate(java.lang.String parameterName,
Date x)
Sets the designated parameter to the given
java.sql.Date value
using the default time zone of the virtual machine that is running
the application. |
void |
CallableStatement.setDate(java.lang.String parameterName,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
ResultSet.updateDate(int columnIndex,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
ResultSet.updateDate(java.lang.String columnLabel,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
SQLOutput.writeDate(Date x)
Writes the next attribute to the stream as a java.sql.Date object.
|
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.