OracleDatabase.MultiThreaded
From Xojo Documentation
Property (As Boolean )
aOracleDatabase.MultiThreaded = newBooleanValue
or
BooleanValue = aOracleDatabase.MultiThreaded
New in 2011r1
Supported for all project types and targets.
or
BooleanValue = aOracleDatabase.MultiThreaded
New in 2011r1
Supported for all project types and targets.
If True, calls to SQLSelect and SQLExecute are threaded. The default is True.
Notes
When MultiThreaded is true, database access does not block other threads (or otherwise lock your running application).
However, performance is greatly improved if MultiThreaded = False
Example
// db is an existing OracleDatabase connection
db.MultiThreaded = False
db.MultiThreaded = False