Sets the specified parameter to the given whole number in the specified prepared statement object.
Syntax
setInt( preparedstatement , index , integer )
preparedstatement.setInt( index , integer )
Parameters
preparedstatement
|
the statement object to use.
|
index
|
the index of the column to set.
|
integer
|
the integer value to use.
|
Returns
Example
pstmt.setInt( 1, i )
|