Commit Graph

23 Commits (78976c1f42149f048492548a9b4e6a60f39516bc)

Author SHA1 Message Date
Vinícius Garcia 24599e6644 Improve NewWithAdapter to expect a dialect instead of a driver name 2022-12-21 21:23:54 -03:00
Vinícius Garcia 8538d99468 Remove unnecessary dependency on github.com/pkg/errors 2022-10-08 14:56:30 -03:00
Vinícius Garcia 7ec3ef011d Remove dependency on ditointernet/go-assert 2022-07-16 13:31:38 -03:00
Vinícius Garcia 9b7e5ddfbc Run go mod tidy on the ksql module 2022-03-15 17:02:52 -03:00
Vinícius Garcia a394fd0815 Move some functions to the internal package 2022-01-11 19:00:22 -03:00
Vinícius Garcia 45edd4b1dd Add docker test setup for postgres
Before this commit the user would need to setup a local postgres
database manually in order to run the tests.

Now we are setting it up using docker-test which makes it easier.

We still require manual setup of sqlserver and mysql databases,
we'll fix these soon so that running the tests become trivial.
2021-12-14 23:34:26 -03:00
Vinícius Garcia e2705f2b8e Move benchmarks to submodule in order to reduce the go.mod deps 2021-11-13 23:59:33 -03:00
Vinícius Garcia f68b71a0a1 Merge branch 'master' into kbuilder 2021-08-08 19:34:22 -03:00
Vinícius Garcia 657ed7414b Add first version of the pgx adapter 2021-08-01 10:23:10 -03:00
Vinícius Garcia edecbf8191 Add feature of omiting the "SELECT" part of the query
Now the 3 functions that allow you to write plain SQL queries
also work if you omit the `SELECT ...` part of the query.

If you do this the code will check and notice that the first
token of the query is a "FROM" token and then automatically
build the SELECT part of the query based on the tags of the struct.

Everything is cached, so the impact on performance should be negligible.

The affected functions are:

- Query()
- QueryOne()
- QueryChunks()
2021-05-16 17:38:18 -03:00
Vinícius Garcia 56aa77135c Add support to the `sqlserver` driver =] 2021-05-09 22:33:03 -03:00
Vinícius Garcia bbad31ce4d Add support to the mysql driver 2021-05-08 12:43:11 -03:00
Vinícius Garcia 8b8fb092d8 Replace all instances of lower-cased kisssql for ksql 2021-03-10 10:11:18 -03:00
Vinícius Garcia 568c61bdba Replace all ocurrencies of `KissORM` for `KissSQL` 2021-03-08 11:18:52 -03:00
Vinícius Garcia d56edab07a Rerun `make setup` and `go mod tidy` 2021-03-02 22:00:34 -03:00
Vinícius Garcia e1e711dc91 Add a Benchmark comparing us with the sqlx package 2021-01-22 21:25:14 -03:00
Vinícius Garcia e49aa5f620 Add example tests to `examples/testing` 2021-01-03 13:41:21 -03:00
Vinícius Garcia 8a65da552f Rename struct tags from `gorm` to `kissorm` 2020-12-31 11:59:24 -03:00
Vinícius Garcia 49c2842c03 Remove gorm dependency! We are independent now! 2020-12-31 11:57:33 -03:00
Vinícius Garcia a6e54f0558 Fix sqlite warning by updating the package version 2020-12-30 15:19:08 -03:00
Vinícius Garcia de8f4e56d7 Fix Insert function to work with postgres
This commit adds the concept of dialects so we can support
different ways of escaping names, creating placeholders, etc.

Currently we are only using it on the Insert route and we only
support postgres and sqlite3, in the future we should add
more tests so we can start supporting more drivers.
2020-12-29 23:36:10 -03:00
Vinícius Garcia 7b30856248 Rename go mod project 2020-09-22 16:59:04 -03:00
Vinícius Garcia 38ce8a9b0e Remove unnecessary use of reflection 2020-09-11 18:48:29 -03:00