Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/joeychilson/litequery
- Owner: joeychilson
- License: mit
- Created: 2023-03-16T11:28:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-26T14:23:29.000Z (almost 2 years ago)
- Last Synced: 2024-11-16T00:25:53.595Z (3 months ago)
- Topics: go, golang, query, query-builder, sqlite
- Language: Go
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`