mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Rename all scripts to have ".zeek" file extension
This commit is contained in:
parent
537d9cab97
commit
18bd74454b
357 changed files with 169 additions and 169 deletions
23
scripts/base/frameworks/input/readers/sqlite.zeek
Normal file
23
scripts/base/frameworks/input/readers/sqlite.zeek
Normal file
|
@ -0,0 +1,23 @@
|
|||
##! 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue