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