Mirror

Volodymyr Tkach 9c1947b02b Update README.md 2 years ago
db 754e480723 Basic methods for all engines 2 years ago
gosql de61ceb051 Disable logs to os.Stdout on tests 2 years ago
.gitignore 3046e58392 Initial commit 2 years ago
LICENSE 3046e58392 Initial commit 2 years ago
Makefile bb558b9617 Remove lint warning 2 years ago
README.md 9c1947b02b Update README.md 2 years ago
go.mod f7cb2aa407 Add Transaction method 2 years ago
go.sum f7cb2aa407 Add Transaction method 2 years ago

README.md

golang-sql

Go bindings library for MySQL, PostgreSQL and SQLite

Used amacneil/dbmate inside the project for creating connection (please review dbmate docs), so next schemes is supported:

# MySQL TCP 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