Method setArray(int i, Array x)
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 public void setArray(int i, Array x) throws SQLException { _stmt.setArray( i, x); }
2 public void setArray (int i, Array x) throws SQLException { checkOpen(); _stmt.setArray(i,x);}
3 _cs.setArray(p1, p2);
4 preparedStatement.setArray(i, x);
5 prepStmtPassthru.setArray(p0,((P6Array)p1).passthru);
6 delegate_.setArray( i, x );
7 statement.setArray(position, (Array) value); // no way to convert string to array
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.