Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 1.89 KB

File metadata and controls

65 lines (50 loc) · 1.89 KB
title registerOutParameter Method to type and name | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service drivers
ms.service
ms.component jdbc
ms.reviewer
ms.suite sql
ms.technology
drivers
ms.tgt_pltfrm
ms.topic article
apiname
SQLServerCallableStatement.registerOutParameter
apilocation
sqljdbc.jar
apitype Assembly
ms.assetid f962c912-2475-4e1f-a384-579be2d17f37
caps.latest.revision 9
author MightyPen
ms.author genemi
manager jhubbard
ms.workload Inactive

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

[!INCLUDEDriver_JDBC_Download]

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

Syntax

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

Parameters

s

A String that contains the parameter name.

n

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

s1

A String that contains the fully qualified SQL type name.

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