Uses of Class
oracle.sql.TIMESTAMPLTZ
-
Packages that use TIMESTAMPLTZ Package Description oracle.jdbc Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the packageoracle.jdbc
.oracle.sql A package of classes that represent java SQL types and Oracle specific SQL types. -
-
Uses of TIMESTAMPLTZ in oracle.jdbc
Methods in oracle.jdbc that return TIMESTAMPLTZ Modifier and Type Method Description TIMESTAMPLTZ
OracleConnection. createTIMESTAMPLTZ(String value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnection. createTIMESTAMPLTZ(Date value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnection. createTIMESTAMPLTZ(Time value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnection. createTIMESTAMPLTZ(Timestamp value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnection. createTIMESTAMPLTZ(DATE value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnectionWrapper. createTIMESTAMPLTZ(String value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnectionWrapper. createTIMESTAMPLTZ(Date value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnectionWrapper. createTIMESTAMPLTZ(Time value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnectionWrapper. createTIMESTAMPLTZ(Timestamp value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleConnectionWrapper. createTIMESTAMPLTZ(DATE value, Calendar cal)
Creates a new TIMESTAMPLTZ with the given value.TIMESTAMPLTZ
OracleCallableStatement. getTIMESTAMPLTZ(int paramIdx)
Retrieves data into anoracle.sql.TIMESTAMPLTZ
object.TIMESTAMPLTZ
OracleResultSet. getTIMESTAMPLTZ(int columnIndex)
Obtain an oracle.sql.TIMESTAMPLTZ value from the ResultSet.TIMESTAMPLTZ
OracleResultSet. getTIMESTAMPLTZ(String columnName)
Obtain an oracle.sql.TIMESTAMPLTZ value from the ResultSet.Methods in oracle.jdbc with parameters of type TIMESTAMPLTZ Modifier and Type Method Description void
OracleCallableStatement. setTIMESTAMPLTZ(String parameterName, TIMESTAMPLTZ x)
Sets the designated parameter to anoracle.sql.TIMESTAMPLTZ
value.void
OraclePreparedStatement. setTIMESTAMPLTZ(int parameterIndex, TIMESTAMPLTZ x)
Binds the designated parameter to anoracle.sql.TIMESTAMPLTZ
value.void
OraclePreparedStatement. setTIMESTAMPLTZAtName(String parameterName, TIMESTAMPLTZ value)
Sets the designated parameter to anoracle.sql.TIMESTAMPLTZ
value.void
OracleResultSet. updateTIMESTAMPLTZ(int columnIndex, TIMESTAMPLTZ value)
Oracle extension.void
OracleResultSet. updateTIMESTAMPLTZ(String columnName, TIMESTAMPLTZ value)
Oracle extension. -
Uses of TIMESTAMPLTZ in oracle.sql
Methods in oracle.sql that return TIMESTAMPLTZ Modifier and Type Method Description static TIMESTAMPLTZ
TIMESTAMPLTZ. of(Connection conn, java.time.LocalDateTime ldt)
Creates TIMESTAMPLTZ from the LocalDateTime.static TIMESTAMPLTZ
TIMESTAMPLTZ. of(Connection conn, java.time.OffsetDateTime odt)
Creates TIMESTAMPLTZ from the OffsetDateTime.static TIMESTAMPLTZ
TIMESTAMPLTZ. of(Connection conn, java.time.OffsetTime ot)
Creates TIMESTAMPLTZ from the OffsetTime.static TIMESTAMPLTZ
TIMESTAMPLTZ. of(Connection conn, java.time.ZonedDateTime zdt)
Creates TIMESTAMPLTZ from the ZonedDateTime.
-