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 and Description |
---|---|
CLOB |
OracleCallableStatement.getCLOB(int parameterIndex)
Retrieves data into an
oracle.sql.CLOB object. |
CLOB |
OracleResultSet.getCLOB(int columnIndex)
Oracle extension.
|
CLOB |
OracleResultSet.getCLOB(int columnIndex)
Oracle extension.
|
CLOB |
OracleCallableStatement.getCLOB(int parameterIndex)
Retrieves data into an
oracle.sql.CLOB object. |
CLOB |
OracleResultSet.getCLOB(String columnName)
Oracle extension.
|
CLOB |
OracleResultSet.getCLOB(String columnName)
Oracle extension.
|
Modifier and Type | Method and Description |
---|---|
void |
OraclePreparedStatement.setCLOB(int parameterIndex, CLOB lob)
Binds the designated parameter to a
oracle.sql.CLOB value. |
void |
OraclePreparedStatement.setCLOB(int parameterIndex, CLOB lob)
Binds the designated parameter to a
oracle.sql.CLOB value. |
void |
OracleCallableStatement.setCLOB(String parameterName, CLOB x)
Sets the designated parameter to an
oracle.sql.CLOB value. |
void |
OracleCallableStatement.setCLOB(String parameterName, CLOB x)
Sets the designated parameter to an
oracle.sql.CLOB value. |
void |
OraclePreparedStatement.setCLOBAtName(String parameterName, CLOB value)
Sets the designated parameter to an oracle.sql.CLOB value.
|
void |
OraclePreparedStatement.setCLOBAtName(String parameterName, CLOB value)
Sets the designated parameter to an oracle.sql.CLOB value.
|
void |
OracleResultSet.updateCLOB(int columnIndex, CLOB value)
Oracle extension.
|
void |
OracleResultSet.updateCLOB(int columnIndex, CLOB value)
Oracle extension.
|
void |
OracleResultSet.updateCLOB(String columnName, CLOB value)
Oracle extension.
|
void |
OracleResultSet.updateCLOB(String columnName, CLOB value)
Oracle extension.
|
Modifier and Type | Class and Description |
---|---|
class |
NCLOB
Deprecated.
Use java.sql.NClob interface for declaration instead of using concrete class oracle.sql.NCLOB.
|
Modifier and Type | Method and Description |
---|---|
static CLOB |
CLOB.createTemporary(Connection conn, boolean cache, int _duration)
Deprecated.
Create a temporary clob.
|
static CLOB |
CLOB.createTemporary(Connection conn, boolean cache, int _duration)
Deprecated.
Create a temporary clob.
|
static CLOB |
CLOB.createTemporary(Connection conn, boolean cache, int _duration, short form_of_use)
Deprecated.
Create a temporary clob or nclob.
|
static CLOB |
CLOB.createTemporary(Connection conn, boolean cache, int _duration, short form_of_use)
Deprecated.
Create a temporary clob or nclob.
|
static CLOB |
CLOB.empty_lob()
Deprecated.
use getEmptyCLOB instead
|
static CLOB |
CLOB.empty_lob()
Deprecated.
use getEmptyCLOB instead
|
static CLOB |
CLOB.getEmptyCLOB()
Deprecated.
Return a empty lob.
|
static CLOB |
CLOB.getEmptyCLOB()
Deprecated.
Return a empty lob.
|
Modifier and Type | Method and Description |
---|---|
static void |
CLOB.freeTemporary(CLOB temp_lob)
Deprecated.
Free the contents and the locator of the temporary clob.
|
static void |
CLOB.freeTemporary(CLOB temp_lob)
Deprecated.
Free the contents and the locator of the temporary clob.
|
static short |
CLOB.getDuration(CLOB lob)
Deprecated.
return the duration of a temporary LOB
|
static short |
CLOB.getDuration(CLOB lob)
Deprecated.
return the duration of a temporary LOB
|
static boolean |
CLOB.isTemporary(CLOB lob)
Deprecated.
Return true if the lob locator points to a temporary clob.
|
static boolean |
CLOB.isTemporary(CLOB lob)
Deprecated.
Return true if the lob locator points to a temporary clob.
|