now the writer supports tables and vectors.

still not tested, but using Log::default_writer=Log::WRITER_SQLITE seems to generate all
the right log-databases, etc.
This commit is contained in:
Bernhard Amann 2012-06-14 15:54:22 -07:00
parent 0a439b6b61
commit c664c40ac2
5 changed files with 145 additions and 19 deletions

View file

@ -2,3 +2,4 @@
@load ./postprocessors
@load ./writers/ascii
@load ./writers/dataseries
@load ./writers/sqlite

View file

@ -0,0 +1,10 @@
##! Interface for the SQLite log writer. Redefinable options are available
##! to tweak the output format of the SQLite reader.
module LogSQLite;
export {
## Separator between set elements.
const set_separator = "," &redef;
}