-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_manager.go
62 lines (50 loc) · 1.12 KB
/
connection_manager.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package sql
import (
"context"
"fmt"
"github.com/jmoiron/sqlx"
_ "github.com/lib/pq"
"log"
)
const (
postgres = "postgres"
)
type PgConnectionManager struct {
db *sqlx.DB
}
func NewPgConnectionManager(connectionString string) (*PgConnectionManager, error) {
// Open a connection to the database
db, err := sqlx.Open(postgres, connectionString)
if err != nil {
log.Printf("failed to open connection: %v", err)
return nil, err
}
// Ping the database to verify the connection
if err := db.Ping(); err != nil {
log.Printf("failed to ping: %v", err)
db.Close()
return nil, err
}
return &PgConnectionManager{
db: db,
}, nil
}
func (cm *PgConnectionManager) Close() error {
return cm.db.Close()
}
func (cm *PgConnectionManager) Query() *Query {
return NewQuery(cm.db)
}
func (cm *PgConnectionManager) Transaction() *Transaction {
return NewTransaction(cm.db)
}
func (cm *PgConnectionManager) CheckDatabaseHealth() error {
if cm.db == nil {
return fmt.Errorf("database connection is not initialized")
}
ctx := context.Background()
if err := cm.db.PingContext(ctx); err != nil {
return err
}
return nil
}