Class SQLServerPreparedStatement

  • All Implemented Interfaces:
    ISQLServerPreparedStatement, ISQLServerStatement, Serializable, AutoCloseable, PreparedStatement, Statement, Wrapper
    Direct Known Subclasses:
    SQLServerCallableStatement

    public class SQLServerPreparedStatement
    extends SQLServerStatement
    implements ISQLServerPreparedStatement
    Provides an implementation of java.sql.PreparedStatement interface that assists in preparing Statements for SQL Server.

    SQLServerPreparedStatement prepares a statement using SQL Server's sp_prepexec and re-uses the returned statement handle for each subsequent execution of the statement (typically using different parameters provided by the user)

    SQLServerPreparedStatement supports batching whereby a set of prepared statements are executed in a single database round trip to improve runtime performance.

    The API javadoc for JDBC API methods that this class implements are not repeated here. Please see Sun's JDBC API interfaces javadoc for those details.

    See Also:
    Serialized Form