skip to main content
Connection Property Descriptions : MaxPooledStatements
  

Try DataDirect Drivers Now

MaxPooledStatements

Purpose

Specifies the maximum number of pooled prepared statements for this connection. Setting MaxStatements to an integer greater than zero (0) enables the driver’s internal prepared statement pooling, which is useful when the driver is not running from within an application server or another application that provides its own prepared statement pooling.

Valid Values

0 | x
where
x
is a positive integer that represents a number of pooled prepared statements.

Behavior

If set to 0, the driver’s internal prepared statement pooling is not enabled.
If set to x, the driver enables the DataDirect Statement Pool and uses the specified value to cache a certain number of prepared statements created by an application. If the value set for this property is greater than the number of prepared statements that are used by the application, all prepared statements that are created by the application are cached. Because CallableStatement is a sub-class of PreparedStatement, CallableStatements also are cached.

Example

If the value of this property is set to 20, the driver caches the last 20 prepared statements that are created by the application.

Data Source Method

setMaxPooledStatements

Default

0

Data Type

int

Alias

MaxStatements

See also

*Statement Pool Monitor
*Statement Pooling Properties