Showing all posts tagged #db:


SQlite

Posted on June 24th, 2014

[Import]
  1. http://www.sqlite.org/cvstrac/wiki?p=ImportingFiles
    sqlite> create table test (id integer, datatype_id integer, level integer, meaning text);
    sqlite> .separator ","
    sqlite> .import no_yes.csv test
  2. commands: http://www.sqlite.org/cli.html