Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.73 KB

File metadata and controls

48 lines (36 loc) · 1.73 KB
title getResponseBuffering 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
apiname
SQLServerStatement.getResponseBuffering()
apilocation
SQLServerStatement.getResponseBuffering()
apitype Assembly
ms.assetid a9a9ffdd-7ce3-4e0a-907c-34d6a54e6865
author David-Engel
ms.author v-daenge

getResponseBuffering Method (SQLServerStatement)

[!INCLUDEDriver_JDBC_Download]

Retrieves the response buffering mode for this SQLServerStatement object.

Syntax

  
public final java.lang.String getResponseBuffering()  

Return Value

A String that contains a lower-case full or adaptive.

Remarks

adaptive specifies buffering the minimum possible data when necessary.

full specifies reading the entire result from the server at run time.

adaptive is the default value in JDBC Driver version 2.0 and 3.0. full was the default prior to JDBC Driver version 2.0.

For more information about using the response buffering mode, see Using Adaptive Buffering.

See Also

setResponseBuffering Method (SQLServerStatement)
SQLServerStatement Members
SQLServerStatement Class