Files
sqlite3/README.md
2023-02-22 14:19:56 +00:00

1.1 KiB

Go bindings to SQLite using Wazero

Go Reference Go Report Go Coverage

⚠️ CAUTION ⚠️

This is a WIP.
DO NOT USE with data you care about.

Roadmap:

  • build SQLite using zig cc --target=wasm32-wasi
  • :memory: databases
  • port test_demovfs.c to Go
    • branch wasi uses test_demovfs.c directly
  • design a simple, nice API, enough for simple use cases
  • provide a simple database/sql driver
  • file locking, compatible with SQLite on Windows/Unix
  • shared memory, compatible with SQLite on Windows/Unix
    • needed for improved WAL mode
  • advanced features
    • incremental BLOB I/O
    • online backup
    • session extension
    • snapshot