Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.67 KB

File metadata and controls

53 lines (36 loc) · 1.67 KB
title prepareStatement Method (java.lang.String, int[])
description prepareStatement Method (java.lang.String, int[])
author David-Engel
ms.author davidengel
ms.date 01/22/2026
ms.service sql
ms.subservice connectivity
ms.topic reference
apilocation sqljdbc.jar
apiname SQLServerConnection.prepareStatement (java.lang.String, int[])
apitype Assembly

prepareStatement method (java.lang.String, int[])

[!INCLUDEDriver_JDBC_Download]

Creates a SQLServerPreparedStatement object for sending parameterized SQL statements to the database, and that's capable of returning the autogenerated keys designated by the given array.

Syntax

public java.sql.PreparedStatement prepareStatement(java.lang.String sql,  
                                                   int[] columnIndexes)  

Parameters

sql

A String that contains a SQL statement.

columnIndexes

An array of ints.

Return value

A PreparedStatement object.

Exceptions

SQLServerException

Remarks

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

Related content