convex-db
Installation
SKILL.md
Using Convex DB
Convex DB provides SQL access over lattice data. Connect via JDBC, PostgreSQL wire protocol, or the direct lattice API.
Reference: convex-db/README.md for full documentation including replication, PostgreSQL server setup, and architecture details.
Connecting
JDBC (Java)
// In-memory
Connection conn = DriverManager.getConnection("jdbc:convex:mydb");
// Persistent (Etch-backed, survives restarts)
Connection conn = DriverManager.getConnection("jdbc:convex:file:/data/mydb.etch");
Driver auto-registers via ServiceLoader. Class: convex.db.jdbc.ConvexDriver