A Golang MySQL connector library with built-in functionality to create a new database, execute batch operations, and manage transactions.
This Golang repository provides a MySQL connector package along with a set of services for handling common database operations. It simplifies the process of creating new databases, executing batch queries, and managing transactions in a MySQL database using Golang.
Golang version v1.20
- Latest version
go get -u github.com/sivaosorg/msqlconn@latest
- Use a specific version (tag)
go get github.com/sivaosorg/[email protected]
Explain how users can interact with the various modules.
To run tests for all modules, use the following command:
make test
To tidy up the project's Go modules, use the following command:
make tidy
To upgrade project dependencies, use the following command:
make deps-upgrade
To clean the Go module cache, use the following command:
make deps-clean-cache