Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.95 KB

File metadata and controls

43 lines (30 loc) · 1.95 KB
title SQLServerPreparedStatement Class | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
ms.assetid a8481c06-fbba-432b-8c69-4f4619c20ad4
author David-Engel
ms.author v-daenge

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