policy/frameworks/storage/backend/sqlite/main.zeek
- Storage::Backend::SQLite
SQLite storage backend support
- Namespace:
Storage::Backend::SQLite
- Imports:
Summary
Types
Options record for the built-in SQLite backend. |
Redefinitions
|
Detailed Interface
Types
- Storage::Backend::SQLite::Options
- Type:
- Fields:
-
database_path:
string Path to the database file on disk. Setting this to “:memory:” will tell SQLite to use an in-memory database. Relative paths will be opened relative to the directory where Zeek was started from. Zeek will not create intermediate directories if they do not already exist. See https://www.sqlite.org/c3ref/open.html for more rules on paths that can be passed here.
-
table_name:
string Name of the table used for storing data. It is possible to use the same database file for two separate tables, as long as the this value is different between the two.
-
busy_timeout:
interval&default=5.0 secs&optional The timeout for the connection to the database. This is set per-connection. It is equivalent to setting a
busy_timeoutpragma value, but that value will be ignored in favor of this field.
-
pragma_commands:
table[string] ofstring&ordered&default= ...&optional Key/value table for passing pragma commands when opening the database. These must be pairs that can be passed to the
pragmacommand in sqlite. Theintegrity_checkpragma is run automatically and does not need to be included here. For pragmas without a second argument, set the value to an empty string. Setting thebusy_timeoutpragma here will be ignored.
-
pragma_timeout:
interval&default=500.0 msecs&optional The total amount of time that an SQLite backend will spend attempting to run an individual pragma command before giving up and returning an initialization error. Setting this to zero will result in the backend attempting forever until success.
-
database_path:
Options record for the built-in SQLite backend.