Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.61 KB

File metadata and controls

42 lines (30 loc) · 1.61 KB
title setResponseBuffering Method (SQLServerDataSource)
description setResponseBuffering Method (SQLServerDataSource)
author David-Engel
ms.author davidengel
ms.date 01/19/2017
ms.service sql
ms.subservice connectivity
ms.topic reference
apilocation SQLServerDataSource.setResponseBuffering(String responseBufferingValue)
apiname SQLServerDataSource.setResponseBuffering(String responseBufferingValue)
apitype Assembly

setResponseBuffering Method (SQLServerDataSource)

[!INCLUDEDriver_JDBC_Download]

Sets the response buffering mode for connections created by using this SQLServerDataSource object.

Syntax

  
public void setResponseBuffering(java.lang.String value)  

Parameters

value

A String that contains the buffering and streaming mode. The valid mode can be one of the following case-insensitive Strings: full or adaptive.

Remarks

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

The adaptive value specifies buffering the minimum possible data when necessary. The adaptive value is the default buffering mode.

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

See Also

SQLServerDataSource Members
SQLServerDataSource Class