getResponseBuffering Method (SQLServerStatement)

Download JDBC driver

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