18 lines
409 B
Markdown
18 lines
409 B
Markdown
|
# Example: SQLite3
|
||
|
* Tested using https://bitbucket.org/xerial/sqlite-jdbc
|
||
|
* SQLite setup - `echo "CREATE table log (host text, timestamp datetime, message text);" | sqlite3 test.db`
|
||
|
```
|
||
|
input
|
||
|
{
|
||
|
stdin { }
|
||
|
}
|
||
|
output {
|
||
|
stdout { }
|
||
|
|
||
|
jdbc {
|
||
|
connection_string => 'jdbc:sqlite:test.db'
|
||
|
statement => [ "INSERT INTO log (host, timestamp, message) VALUES(?, ?, ?)", "host", "@timestamp", "message" ]
|
||
|
}
|
||
|
}
|
||
|
```
|