Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/joeychilson/litequery

A simple and fast SQLite query builder library for Go.
https://github.com/joeychilson/litequery

go golang query query-builder sqlite

Last synced: 17 days ago
JSON representation

A simple and fast SQLite query builder library for Go.

Awesome Lists containing this project

README

        

# litequery

A simple and fast SQLite query builder library for Go.

## Installation

```bash
go get github.com/joeychilson/litequery
```

## Queries

- [x] `ANALYZE`
- [x] `EXPLAIN`
- [x] `PRAGMA`
- [x] `SELECT`
- [x] `INSERT`
- [x] `UPDATE`
- [x] `DELETE`
- [x] `CREATE TABLE`
- [x] `DROP TABLE`
- [x] `CREATE INDEX`
- [x] `DROP INDEX`
- [x] `CREATE VIEW`
- [x] `DROP VIEW`
- [x] `CREATE TRIGGER`
- [x] `DROP TRIGGER`
- [x] `ALTER TABLE`
- [x] `RENAME TABLE`
- [x] `ATTACH`
- [x] `DETACH`
- [x] `BEGIN`
- [x] `COMMIT`
- [x] `ROLLBACK`
- [x] `SAVEPOINT`
- [x] `RELEASE`
- [x] `ROLLBACK TO`
- [x] `REINDEX`
- [x] `VACUUM`
- [x] `WITH`
- [x] `UNION`
- [x] `UNION ALL`
- [x] `ORDER BY`
- [x] `GROUP BY`
- [x] `HAVING`
- [x] `LIMIT`
- [x] `OFFSET`
- [x] `WHERE`
- [x] `JOIN`
- [x] `INNER JOIN`
- [x] `LEFT JOIN`
- [x] `RIGHT JOIN`
- [x] `FULL JOIN`
- [x] `ON`
- [x] `USING`
- [x] `VALUES`
- [x] `SET`
- [x] `OR`
- [x] `AND`
- [x] `NOT`
- [x] `LIKE`