github.com/Tri-stone/burrow@v0.25.0/vent/sqldb/adapters/README.md (about) 1 # Vent Adapters 2 3 Vent adapters are relational dbms that can be used to store event & log data. 4 5 ## Supported adapters: 6 7 + PostgreSQL v9 (and above) is fully supported. 8 + SQLite v3 (and above) is fully supported. 9 10 ## Considerations for adding new adapters: 11 12 Each adapter must be in a separate file with the name `<dbms>_adapter.go` and must implement given interface methods described in `db_adapter.go`. 13 14 This is all that is needed to add a new rdbms adapter, in addition to importing proper database driver. 15 16 Provided implementations are included in `postgres_adapter.go` and `sqlite_adapter.go`.