Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 2.11 KB

File metadata and controls

51 lines (36 loc) · 2.11 KB
title registerOutParameter Method (int, int)
description registerOutParameter Method (int, int)
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference
apilocation sqljdbc.jar
apiname SQLServerCallableStatement.registerOutParameter (int, int)
apitype Assembly

registerOutParameter Method (int, int)

[!INCLUDEDriver_JDBC_Download]

Registers the OUT parameter in the specified ordinal position to the given JDBC type.

Syntax

  
public void registerOutParameter(int index,  
                                 int sqlType)  

Parameters

index

An int that indicates the ordinal position of the parameter.

sqlType

A JDBC type code as defined in java.sql.Types.

Exceptions

SQLServerException

Remarks

This registerOutParameter method is specified by the registerOutParameter method in the java.sql.CallableStatement interface.

Beginning with [!INCLUDEssNoVersion] JDBC Driver 3.0, when sqlType is of type java.sql.Types.TIME, the behavior of this method is modified by the sendTimeAsDatetime connection property (Setting the Connection Properties) and SQLServerDataSource.setSendTimeAsDatetime.

For more information, see Configuring How java.sql.Time Values are Sent to the Server.

See Also

registerOutParameter Method (SQLServerCallableStatement)
SQLServerCallableStatement Members
SQLServerCallableStatement Class