Skip to content

Latest commit

 

History

History
60 lines (45 loc) · 2.09 KB

File metadata and controls

60 lines (45 loc) · 2.09 KB
title setTime Method to time value | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
drivers
ms.tgt_pltfrm
ms.topic article
apiname
SQLServerCallableStatement.setTime (java.lang.String, java.lang.Time)
apilocation
sqljdbc.jar
apitype Assembly
ms.assetid 49301bec-6cf2-43fb-9d4e-e3986164a208
caps.latest.revision 19
author MightyPen
ms.author genemi
manager jhubbard

setTime Method (java.lang.String, java.sql.Time)

[!INCLUDEDriver_JDBC_Download]

Sets the designated parameter to the given time value.

Syntax

  
public void setTime(java.lang.String sCol,  
                    java.sql.Time t)  

Parameters

sCol

A String that contains the parameter name.

t

A Time object.

Exceptions

SQLServerException

Remarks

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

Beginning with [!INCLUDEssNoVersion] JDBC Driver 3.0, 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

setTime Method (SQLServerCallableStatement)
SQLServerCallableStatement Members
SQLServerCallableStatement Class