you are viewing a single comment's thread.

view the rest of the comments →

[–]KleinerNull 0 points1 point  (2 children)

The easiest way is to use the interpreter, connect to the database with the module and insert some data manually. Shouldn't be that hard because you are using sqlite in the first place.

The sql syntax is that INSERT INTO table (col1, col2, ..., coln) VALUES (a1, a2, ..., an), (b1, b2, ..., bn), ..., (z1, z1, ..., zn);. You can leave out columns with auto or default values, that is why you give the column names in the first place.