Package | Description |
---|---|
oracle.jdbc |
Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the package
oracle.jdbc . |
oracle.sql |
A package of classes that represent java SQL types and Oracle specific SQL types.
|
Modifier and Type | Method | Description |
---|---|---|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(String value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(String value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Date value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Date value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Time value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Time value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Timestamp value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Timestamp value, java.time.ZoneId tzid) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(Timestamp value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnection.createTIMESTAMPTZ(DATE value) |
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(String value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(String value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Date value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Date value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Time value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Time value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Timestamp value) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Timestamp value, java.time.ZoneId tzid) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(Timestamp value, Calendar cal) |
Creates a new TIMESTAMPTZ with the given value.
|
TIMESTAMPTZ |
OracleConnectionWrapper.createTIMESTAMPTZ(DATE value) |
|
TIMESTAMPTZ |
OracleCallableStatement.getTIMESTAMPTZ(int paramIdx) |
Retrieves data into an
oracle.sql.TIMESTAMPTZ object. |
TIMESTAMPTZ |
OracleResultSet.getTIMESTAMPTZ(int columnIndex) |
Obtain an oracle.sql.TIMESTAMPTZ value from the ResultSet.
|
TIMESTAMPTZ |
OracleResultSet.getTIMESTAMPTZ(String columnName) |
Obtain an oracle.sql.TIMESTAMPTZ value from the ResultSet.
|
Modifier and Type | Method | Description |
---|---|---|
void |
OracleCallableStatement.setTIMESTAMPTZ(String parameterName, TIMESTAMPTZ x) |
Sets the designated parameter to an
oracle.sql.TIMESTAMPTZ value. |
void |
OraclePreparedStatement.setTIMESTAMPTZ(int parameterIndex, TIMESTAMPTZ x) |
Binds the designated parameter to an
oracle.sql.TIMESTAMPTZ value. |
void |
OraclePreparedStatement.setTIMESTAMPTZAtName(String parameterName, TIMESTAMPTZ value) |
Sets the designated parameter to an
oracle.sql.TIMESTAMPTZ value. |
void |
OracleResultSet.updateTIMESTAMPTZ(int columnIndex, TIMESTAMPTZ value) |
Oracle extension.
|
void |
OracleResultSet.updateTIMESTAMPTZ(String columnName, TIMESTAMPTZ value) |
Oracle extension.
|
Modifier and Type | Method | Description |
---|---|---|
static TIMESTAMPTZ |
TIMESTAMPLTZ.toTIMESTAMPTZ(Connection conn, byte[] timestampltz) |
Convert a byte array representing a TIMESTAMPLTZ object to a Oracle TIMESTAMPTZ Object
|