mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

* origin/fastpath: make the documentation of the SQLite reader/writer a bit nicer. Wrong example file was included - reported by Michael Auger @LM4K
23 lines
823 B
Text
23 lines
823 B
Text
##! Interface for the SQLite input reader. Redefinable options are available
|
|
##! to tweak the input format of the SQLite reader.
|
|
##!
|
|
##! See :doc:`/frameworks/logging-input-sqlite` for an introduction on how to
|
|
##! use the SQLite reader.
|
|
##!
|
|
##! When using the SQLite reader, you have to specify the SQL query that returns
|
|
##! the desired data by setting ``query`` in the ``config`` table. See the
|
|
##! introduction mentioned above for an example.
|
|
|
|
module InputSQLite;
|
|
|
|
export {
|
|
## Separator between set elements.
|
|
## Please note that the separator has to be exactly one character long.
|
|
const set_separator = Input::set_separator &redef;
|
|
|
|
## String to use for an unset &optional field.
|
|
const unset_field = Input::unset_field &redef;
|
|
|
|
## String to use for empty fields.
|
|
const empty_field = Input::empty_field &redef;
|
|
}
|