Method setShort(int parameterIndex, short 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
ps.setShort(index, ((Short) value).shortValue());
2
public void setShort(int parameterIndex, short x) throws SQLException { _stmt.setShort( parameterIndex, x); }
3
public void setShort(int parameterIndex, short x) throws SQLException { checkOpen(); _stmt.setShort(parameterIndex,x);}
4
_cs.setShort(p1, p2);
5
prepStmtPassthru.setShort(p0,p1);
6
preparedStatement.setShort(parameterIndex, x);
7
m_pstmt.setShort (parameterIndex, x);
8
delegate_.setShort( parameterIndex, x );
9
preparedStatement.setShort(position, ((java.lang.Short) value).shortValue());
10
stmt.setShort(i++, ((Short) o).shortValue());
11
ps.setShort(index, ((Short) value).shortValue());
12
statement.setShort(position, s.shortValue());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.