Creates a SQLServerPreparedStatement object for sending parameterized SQL statements to the database, and has the capability to retrieve auto-generated keys.
Syntax
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, int flag)
Parameters
sql
A String containing an SQL statement.
flag
An int that indicates if auto-generated keys will be available.
Return Value
A PreparedStatement object.
Exceptions
Remarks
This prepareStatement method is specified by the prepareStatement method in the java.sql.Connection interface.