ql
ql copied to clipboard
github.com/cznic/ql has moved to modernc.org/ql
Like any other SQL database out there.
I couldn't find such info in your godoc. Some data are transient by nature, it would be nice for ql to support rows with TTL.
Currently statements need to be written and compiled for each request. A query builder could help doing that by aggregating the values / parameters first and then compiling the statement....
Currently database uses Go blob format (gob) to encode data for storage. It would be nice if I can choose what format (and compression?) to use. (maybe it is possible...
Hi Cznic, thank you very much for this library. Please correct me if my conclusion is wrong. After going through the source I believe this bug occurs because the "/tmp/"...
Please add support for [referential integrity](http://en.wikipedia.org/wiki/Referential_integrity), e.g. ``` type Person struct { ID int64 `ql:"uindex xPersonID"` } type Address struct { ID int64 `ql:"uindex xAddressID"` StreetNo string City string Person...
```shell ./ql 'create table t(thing int, t time);' ./ql 'CREATE INDEX xt_thing ON t(t);' ./ql 'explain SELECT * FROM t WHERE thing = 3 AND t = now();' ┌Iterate all...
Hi There, I had a quick look in the documentation, and I could not find any reference about how the DB scales. I would like to know how I should...
```shell ./ql 'create table t(thing int, t time);' ./ql 'create index x on t(thing,t);' ./ql 'explain SELECT * FROM t WHERE thing = 3 AND t = now();' ┌Iterate all...