Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 448 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 448 Bytes

tqlite

tqlite is a pure typescript SQLite client. It is meant for educational purposes, not for serious production use.

Currently Supported

Currently, the following is supported:

  • Reading the sqlite_schema
  • Reading database tables
  • Reading database views
  • Executing ~50-75% of SELECT statements

Currently In-Progress

  • SQL parsing
  • Advanced query planning
  • Writing to disk
  • Journal file reading
  • WAL support