Sqlite: Difference between revisions

From Bitpost wiki
No edit summary
No edit summary
Line 4: Line 4:
  Reusable\sqlite\SQLite_Static_Library
  Reusable\sqlite\SQLite_Static_Library
  Reusable\sqlite\SQLite_Static_Library\ToDo.txt
  Reusable\sqlite\SQLite_Static_Library\ToDo.txt
The command line '''sqlite3''' is usable:
.headers on
.mode columns
.tables
.schema #tablename#
#sql....
.quit
There is also '''sqlitebrowser'''.

Revision as of 20:47, 13 May 2018

I've built this into Windows apps, it's nice and small. See here for more:

Reusable\sqlite
Reusable\sqlite\SQLite_Static_Library
Reusable\sqlite\SQLite_Static_Library\ToDo.txt

The command line sqlite3 is usable:

.headers on
.mode columns
.tables
.schema #tablename#
#sql....
.quit

There is also sqlitebrowser.