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/msqlconn@v0.0.1Explain how users can interact with the various modules.
To run tests for all modules, use the following command:
make testTo tidy up the project's Go modules, use the following command:
make tidyTo upgrade project dependencies, use the following command:
make deps-upgradeTo clean the Go module cache, use the following command:
make deps-clean-cache