Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.76 KB

File metadata and controls

52 lines (40 loc) · 1.76 KB
title getResponseBuffering Method (SQLServerStatement) | 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
SQLServerStatement.getResponseBuffering()
apilocation
SQLServerStatement.getResponseBuffering()
apitype Assembly
ms.assetid a9a9ffdd-7ce3-4e0a-907c-34d6a54e6865
caps.latest.revision 23
author MightyPen
ms.author genemi
manager jhubbard

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