JDBC Type 4 Driver 3.0 Programmer's Reference (SQL/MX 3.x)

Default: none
For example: dataSourceName=myDataSource
description Property
The description property specifies the registered source name.
Set this property on a DataSource object, ConnectionPoolDataSource object, or
DriverManager object. For information about how to set properties, see How to Specify JDBC Type
4 Properties.
Data type: String
Default: none
The value can be any valid identifier.
executeBatchWithRowsAffected Property
The executeBatchWithRowsAffected property changes the behavior of
java.sql.statement.executeBatch(). If the property is set to ON, the
java.sql.statement.executeBatch() returns an array that has the number of rowsaffected value for
each java.sql.statement.addBatch(). If a SQL operation fails, the entire batch operation rolls
back. Set this property on a DataSource object, ConnectionPoolDataSource object, or
DriverManager object. For information about how to set properties, see How to Specify JDBC Type
4 Properties.
Data type: String
Default: OFF
Values : ON or OFF
For example: executeBatchWithRowsAffected=ON
initialPoolSize Property
The initialPoolSize property sets the initial connection pool size when connection pooling is used
with the Type 4 driver.
Set this property on a DataSource object or DriverManager object. This property is ignored for
connections made through the ConnectionPoolDataSource object, For information about how to
set the property value, see How to Specify JDBC Type 4 Properties.
The driver creates n connections (where n is initialPoolSize) for each connection pool when the
first connection is requested. For example, if initialPoolSize is set to 5 for a data source, the
driver attempts to create and pool five connections the first time the application calls the data source’s