Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.84 KB

File metadata and controls

40 lines (27 loc) · 1.84 KB
title SQLServerPreparedStatement Class
description SQLServerPreparedStatement Class
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference

SQLServerPreparedStatement Class

[!INCLUDEDriver_JDBC_Download]

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 [!INCLUDEssNoVersion] 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