|
2 years ago | |
---|---|---|
db | 2 years ago | |
gosql | 2 years ago | |
.gitignore | 2 years ago | |
LICENSE | 2 years ago | |
Makefile | 2 years ago | |
README.md | 2 years ago | |
go.mod | 2 years ago | |
go.sum | 2 years ago | |
main.go | 2 years ago |
Go bindings library for MySQL, PostgreSQL and SQLite
This library allow you to faster make your development if you need to use/support multiple database engines such MySQL, PostgreSQL or/and SQLite. For example you can make web service and give ability to choose storage type. Or you can use SQLite for tests or for demo version and MySQL or PostgreSQL for production. Migrations (thanks to dbmate) is suported out of box and full SQL messages for debugging. Note: please use PostgreSQL parameter placeholders even if MySQL is used, it will be automatically replaced with ?
Used amacneil/dbmate inside the project for creating connections (please review dbmate docs) and for migrations, so next schemes is supported:
# MySQL connection:
mysql://username:password@127.0.0.1:3306/database?parseTime=true
# MySQL through the socket:
mysql://username:password@/database?socket=/var/run/mysqld/mysqld.sock
# PostgreSQL connection:
postgres://username:password@127.0.0.1:5432/database?sslmode=disable
postgresql://username:password@127.0.0.1:5432/database?sslmode=disable
# SQLite file:
sqlite:///data/database.sqlite
sqlite3:///data/database.sqlite
$ go run main.go
[SQL] [func Exec] INSERT INTO users (id, name) VALUES ($1, $2) ([5 John]) (nil) 0.004 ms
[SQL] [func Query] SELECT id, name FROM users ORDER BY id DESC (empty) (nil) 0.000 ms
ID: 5, Name: John
ID: 2, Name: Bob
ID: 1, Name: Alice
[SQL] [func Close] (empty) (nil) 0.000 ms