Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.79 KB

File metadata and controls

57 lines (42 loc) · 1.79 KB
title registerOutParameter Method to type and scale | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
apiname
SQLServerCallableStatement.registerOutParameter (java.lang.String, int, int)
apilocation
sqljdbc.jar
apitype Assembly
ms.assetid 8bddc557-4526-4843-9804-05dc83c8832d
author David-Engel
ms.author v-daenge

registerOutParameter Method (java.lang.String, int, int)

[!INCLUDEDriver_JDBC_Download]

Registers the OUT parameter with the specified name to the given JDBC type and scale.

Syntax

  
public void registerOutParameter(java.lang.String s,  
                                 int n,  
                                 int n1)  

Parameters

s

A String that contains the parameter name.

sqlType

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

scale

An int that indicates the number of digits to be placed to the right of the decimal point.

Exceptions

SQLServerException

Remarks

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

See Also

registerOutParameter Method (SQLServerCallableStatement)
SQLServerCallableStatement Members
SQLServerCallableStatement Class