SQLServerPreparedStatement Class

Download JDBC driver

Represents the basic implementation of JDBC prepared statement functionality.

Package: com.microsoft.sqlserver.jdbc

Extends: SQLServerStatement

Implements: ISQLServerPreparedStatement

Syntax

  
public class SQLServerPreparedStatement  

Remarks

SQLServerPreparedStatement provides methods that let you supply parameters as any native Java type and many Java object types. SQLServerPreparedStatement prepares a statement by using the SQL Server sp_prepare stored procedure, and then reuses the returned statement handle for each subsequent running of the statement, typically using different parameters provided by the user.

SQLServerPreparedStatement supports batching, where a set of prepared statements are run in a single database round trip, to improve runtime performance.

This class supports unwrapping to SQLServerPreparedStatement class, ISQLServerPreparedStatement interface, java.sql.PreparedStatement interface, and the classes and interfaces supported by SQLServerStatement for unwrapping. For more information, see Wrappers and Interfaces.

See Also

SQLServerPreparedStatement Members
JDBC Driver API Reference