; SQLite ODBC Configuration
; Example configuration for connecting to a SQLite database via ODBC
[SERVER]
; Default connection to use if not specified
default_connection = sqlite_db
; Maximum rows to return per query (default: 1000)
max_rows = 1000
; Query timeout in seconds (default: 30)
timeout = 30
[sqlite_db]
; DSN-based connection - replace with your SQLite DSN name
dsn = SQLite_DSN_Name
; SQLite typically doesn't need username/password
; readonly = true enforces read-only mode for safety
readonly = true