It's pretty easy in Tcl
Sqlite3 db file.sqlite
while {[gets stdin line] > 0} {
parse_line_into index content; # or whatever you do to extract content from
the line
db eval {INSERT INTO whatever (index, content) VALUES ($index, $content);}
}
db close
On 2/1/18, 2:25 PM, "sqlite-users on behalf of Cecil Westerhof"
<[email protected] on behalf of
[email protected]> wrote:
At the moment I have a script where I send the output of a ffmpeg command
to the terminal and a file. Is it possible to send the output to a SQLite
table. I like to use tcl for this.
--
Cecil Westerhof
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users