PostgreSQLDatabase.MultiThreaded

From Xojo Documentation

Property (As Boolean )
aPostgreSQLDatabase.MultiThreaded = newBooleanValue
or
BooleanValue = aPostgreSQLDatabase.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 PostgreSQLDatabase connection
db.MultiThreaded = False