| java.lang.Object com.mysql.jdbc.JDBC4PreparedStatementHelper
JDBC4PreparedStatementHelper | public class JDBC4PreparedStatementHelper (Code) | | |
Method Summary | |
static void | setNClob(PreparedStatement pstmt, int parameterIndex, NClob value) JDBC 4.0 Set a NCLOB parameter. | static void | setNClob(PreparedStatement pstmt, int parameterIndex, Reader reader) | static void | setNClob(PreparedStatement pstmt, int parameterIndex, Reader reader, long length) JDBC 4.0 Set a NCLOB parameter. | static void | setRowId(PreparedStatement pstmt, int parameterIndex, RowId x) | static void | setSQLXML(PreparedStatement pstmt, int parameterIndex, SQLXML xmlObject) |
setNClob | static void setNClob(PreparedStatement pstmt, int parameterIndex, NClob value) throws SQLException(Code) | | JDBC 4.0 Set a NCLOB parameter.
Parameters: i - the first parameter is 1, the second is 2, ... Parameters: x - an object representing a NCLOB throws: SQLException - if a database error occurs |
setNClob | static void setNClob(PreparedStatement pstmt, int parameterIndex, Reader reader, long length) throws SQLException(Code) | | JDBC 4.0 Set a NCLOB parameter.
Parameters: parameterIndex - the first parameter is 1, the second is 2, ... Parameters: reader - the java reader which contains the UNICODE data Parameters: length - the number of characters in the stream throws: SQLException - if a database error occurs |
|
|