You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
25
+
26
+
## Prerequisites
27
+
28
+
Golang version v1.20
29
+
30
+
## Installation
31
+
32
+
- Latest version
33
+
34
+
```bash
35
+
go get -u github.com/sivaosorg/msqlconn@latest
36
+
```
37
+
38
+
- Use a specific version (tag)
39
+
40
+
```bash
41
+
go get github.com/sivaosorg/msqlconn@v0.0.1
42
+
```
43
+
44
+
## Modules
45
+
46
+
Explain how users can interact with the various modules.
47
+
48
+
### Running Tests
49
+
50
+
To run tests for all modules, use the following command:
51
+
52
+
```bash
53
+
make test
54
+
```
55
+
56
+
### Tidying up Modules
57
+
58
+
To tidy up the project's Go modules, use the following command:
59
+
60
+
```bash
61
+
make tidy
62
+
```
63
+
64
+
### Upgrading Dependencies
65
+
66
+
To upgrade project dependencies, use the following command:
67
+
68
+
```bash
69
+
make deps-upgrade
70
+
```
71
+
72
+
### Cleaning Dependency Cache
73
+
74
+
To clean the Go module cache, use the following command:
0 commit comments