Method setRef(int i, Ref 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 setRef(int i, Ref x) throws SQLException { _stmt.setRef( i, x); }
2
public void setRef (int i, Ref x) throws SQLException { checkOpen(); _stmt.setRef(i,x);}
3
_cs.setRef(p1, p2);
4
prepStmtPassthru.setRef(p0,p1);
5
preparedStatement.setRef(i, x);
6
m_pstmt.setRef (parameterIndex, x);
7
delegate_.setRef( i, x );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.