Varus Hsu
Varus Hsu
* I create a new project. * `cp _example/*.go my/new/project/` * `go mod init my_project` * `go mod tidy` * then I receive a error ``` go mod tidy go:...
* Add SQL keyword `NATURAL JOIN`. * Add manual Commit, SavaPoint, Rollback. * Awesome default logger like next: 
* add time range notice. (there is a sql execute err when insert using time.Time{} due out of range)
``` type Database interface { GetDB() *sql.DB BeginTx(ctx context.Context, opts *sql.TxOptions, f func(tx Transaction) error) error // todo // Begin() (Database, error) // SavePoint(name string) error // RollbackTo(name string) error...
## Explain your user case and expected results see: https://github.com/go-gorm/gorm/issues/7002
## GORM Playground Link https://github.com/go-gorm/playground/pull/728 ## Description I have my sql query with multi `Where` conditions. When using `||` instead of `OR`, there are different rows fetched due to brackets....
This pr fix https://github.com/lqs/sqlingo/issues/23