Database Guide : GLORP Tutorial : Command Logging
Command Logging
In VAST, the VADatabaseAccessor acts as the primary interface for database connections. You can configure this object to log all GLORP commands (such as SELECT, INSERT, etc.) as well as direct SQL queries, it will print all output to the Transcript by default.
Enabling Logging
Logging can be enabled for a specific instance or globally for all new instances.
Instance Level To enable logging for a single database accessor instance:
Smalltalk
aVADatabaseAccessor logging: true.
Global Level To enable logging by default for all new instances of the accessor:
Smalltalk
VADatabaseAccessor loggingEnabled: true.
Last modified date: 01/20/2026