public interface OracleParameterMetaData
extends java.sql.ParameterMetaData
java.sql.ParameterMetaData
. For pre-JDK 1.4
applications, this interface provides the equivalent functions in
java.sql.ParameterMetaData
. Applications can use
java.sql.ParameterMetaData
where they do not make use
of Oracle extensions. However, when an application uses the Oracle
extensions to java.sql.ParameterMetaData
, it must use
oracle.jdbc.OracleParameterMetaData
.
This is an interface that can be used to get information about the types
and properties of the parameters in a PreparedStatement
object.
Modifier and Type | Method and Description |
---|---|
VectorMetaData |
getVectorMetaData(int param)
Returns the metadata for a VECTOR parameter, or
null if the
parameter is not a VECTOR. |
void |
query(java.sql.Connection conn)
Re-query the database for parameter types.
|
void query(java.sql.Connection conn) throws java.sql.SQLException
conn
- - the connection to use to query the database.java.sql.SQLException
- - if there was an error processing the queries.VectorMetaData getVectorMetaData(int param) throws java.sql.SQLException
null
if the
parameter is not a VECTOR.param
- the first parameter is 1, the second is 2, ...null
if the column is not a
VECTOR.java.sql.SQLException
- if a database access error occurs