Method setObject(int parameterIndex, Object x, int targetSqlType, int scale)
Return type: void
Member of: java.sql.PreparedStatement
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 stmt.setObject(
2 public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException { _stmt.setObject( parameterIndex, x, targetSqlType, scale); }
3 public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException { checkOpen(); _stmt.setObject(parameterIndex, x, targetSqlType, scale);}
4 prepStmtPassthru.setObject(p0,p1,p2,p3);
5 _cs.setObject(p1, p2, p3, p4);
6 m_pstmt.setObject (parameterIndex, x, targetSqlType, scale);
7 preparedStatement.setObject(parameterIndex, x, targetSqlType, scale);
8 delegate_.setObject( parameterIndex, x, targetSqlType, scale );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.