Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.93 KB

File metadata and controls

49 lines (34 loc) · 1.93 KB
title setPoolable Method (SQLServerStatement) | Microsoft Docs
ms.custom
ms.date 01/19/2017
ms.prod sql
ms.prod_service connectivity
ms.reviewer
ms.technology connectivity
ms.topic conceptual
ms.assetid f0f798c8-cafb-4acc-b85d-2e0059c91d92
author David-Engel
ms.author v-daenge

setPoolable Method (SQLServerStatement)

[!INCLUDEDriver_JDBC_Download]

Requests that a statement be pooled or not pooled.

Syntax

  
public void setPoolable(boolean poolable) throws SQLException  

Parameters

poolable

If true, requests that the statement be pooled. If false, requests that the statement not be pooled.

Exceptions

SQLServerException

Remarks

The value specified in the poolable parameter is a hint to the statement pool implementation indicating if the application wants the statement to be pooled. The statement pool manager decides if it will use the hint.

A statement's pool value applies to both internal statement caches implemented by the driver and external statement caches implemented by application servers and other applications.

By default, a SQLServerStatement object is not poolable when created. SQLServerPreparedStatement and SQLServerCallableStatement objects are poolable when created.

SQLServerException is thrown if this method is called on a closed statement.

isPoolable returns a value indicating if the object is poolable.

See Also

SQLServerStatement Members
SQLServerStatement Class