Neoview JDBC Type 4 Driver API Reference (R2.2, R2.3, R2.4, R2.5)

Throws:
java.sql.SQLException
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql,
java.lang.String stmtLabel)
throws java.sql.SQLException
Throws:
java.sql.SQLException
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
throws java.sql.SQLException
Specified by:
prepareCall in interface java.sql.Connection
Throws:
java.sql.SQLException
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
throws java.sql.SQLException
Specified by:
prepareCall in interface java.sql.Connection
Throws:
java.sql.SQLException
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql,
java.lang.String stmtLabel)
throws java.sql.SQLException
Creates a PreparedStatement object for sending parameterized SQL statements to the database.
Parameters:
sql - SQL statement that might contain one or more '?' IN parameter placeholders
stmtLabel - SQL statement label that can be passed to the method instead of generated by the database
system.
Throws:
java.sql.SQLException - if a database access error occurs