A Golang PostgreSQL connector library with comprehensive functionality, including database creation, batch execution, and transaction management.
Welcome to the Postgres Connector for Go repository! This library provides a robust set of features for interacting with PostgreSQL databases in your Go applications. It includes the ability to create new databases, execute batch operations, and manage transactions efficiently.
Golang version v1.20
- Latest version
go get -u github.com/sivaosorg/psqlconn@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