prepareStatement Method (java.lang.String, int)

Creates a SQLServerPreparedStatement object for sending parameterized SQL statements to the database, and has the capability to retrieve auto-generated keys.

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

SQLServerException

Remarks

This prepareStatement method is specified by the prepareStatement method in the java.sql.Connection interface.

See Also

Reference

SQLServerConnection Class

Concepts

prepareStatement Method (SQLServerConnection)
SQLServerConnection Methods
SQLServerConnection Members