forked from marcboeker/go-duckdb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
connection.go
204 lines (173 loc) · 5.03 KB
/
connection.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package duckdb
/*
#include <duckdb.h>
*/
import "C"
import (
"context"
"database/sql"
"database/sql/driver"
"errors"
"math/big"
"unsafe"
)
// Conn holds a connection to a DuckDB database.
// It implements the driver.Conn interface.
type Conn struct {
duckdbCon C.duckdb_connection
closed bool
tx bool
}
// CheckNamedValue implements the driver.NamedValueChecker interface.
func (c *Conn) CheckNamedValue(nv *driver.NamedValue) error {
switch nv.Value.(type) {
case *big.Int, Interval:
return nil
}
return driver.ErrSkip
}
// ExecContext executes a query that doesn't return rows, such as an INSERT or UPDATE.
// It implements the driver.ExecerContext interface.
func (c *Conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
prepared, err := c.prepareStmts(ctx, query)
if err != nil {
return nil, err
}
res, err := prepared.ExecContext(ctx, args)
errClose := prepared.Close()
if err != nil {
if errClose != nil {
return nil, errors.Join(err, errClose)
}
return nil, err
}
if errClose != nil {
return nil, errClose
}
return res, nil
}
// QueryContext executes a query that may return rows, such as a SELECT.
// It implements the driver.QueryerContext interface.
func (c *Conn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) {
prepared, err := c.prepareStmts(ctx, query)
if err != nil {
return nil, err
}
r, err := prepared.QueryContext(ctx, args)
if err != nil {
errClose := prepared.Close()
if errClose != nil {
return nil, errors.Join(err, errClose)
}
return nil, err
}
// We must close the prepared statement after closing the rows r.
prepared.closeOnRowsClose = true
return r, nil
}
// PrepareContext returns a prepared statement, bound to this connection.
// It implements the driver.ConnPrepareContext interface.
func (c *Conn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
return c.prepareStmts(ctx, query)
}
// Prepare returns a prepared statement, bound to this connection.
// It implements the driver.Conn interface.
func (c *Conn) Prepare(query string) (driver.Stmt, error) {
if c.closed {
return nil, errors.Join(errPrepare, errClosedCon)
}
stmts, count, err := c.extractStmts(query)
if err != nil {
return nil, err
}
defer C.duckdb_destroy_extracted(&stmts)
if count != 1 {
return nil, errors.Join(errPrepare, errMissingPrepareContext)
}
return c.prepareExtractedStmt(stmts, 0)
}
// Begin is deprecated: Use BeginTx instead.
func (c *Conn) Begin() (driver.Tx, error) {
return c.BeginTx(context.Background(), driver.TxOptions{})
}
// BeginTx starts and returns a new transaction.
// It implements the driver.ConnBeginTx interface.
func (c *Conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
if c.tx {
return nil, errors.Join(errBeginTx, errMultipleTx)
}
if opts.ReadOnly {
return nil, errors.Join(errBeginTx, errReadOnlyTxNotSupported)
}
switch sql.IsolationLevel(opts.Isolation) {
case sql.LevelDefault:
default:
return nil, errors.Join(errBeginTx, errIsolationLevelNotSupported)
}
if _, err := c.ExecContext(ctx, `BEGIN TRANSACTION`, nil); err != nil {
return nil, err
}
c.tx = true
return &tx{c}, nil
}
// Close closes the connection to the database.
// It implements the driver.Conn interface.
func (c *Conn) Close() error {
if c.closed {
return errClosedCon
}
c.closed = true
C.duckdb_disconnect(&c.duckdbCon)
return nil
}
func (c *Conn) extractStmts(query string) (C.duckdb_extracted_statements, C.idx_t, error) {
cQuery := C.CString(query)
defer C.duckdb_free(unsafe.Pointer(cQuery))
var stmts C.duckdb_extracted_statements
count := C.duckdb_extract_statements(c.duckdbCon, cQuery, &stmts)
if count == 0 {
errMsg := C.GoString(C.duckdb_extract_statements_error(stmts))
C.duckdb_destroy_extracted(&stmts)
if errMsg != "" {
return nil, 0, getDuckDBError(errMsg)
}
return nil, 0, errEmptyQuery
}
return stmts, count, nil
}
func (c *Conn) prepareExtractedStmt(stmts C.duckdb_extracted_statements, i C.idx_t) (*Stmt, error) {
var s C.duckdb_prepared_statement
state := C.duckdb_prepare_extracted_statement(c.duckdbCon, stmts, i, &s)
if state == C.DuckDBError {
err := getDuckDBError(C.GoString(C.duckdb_prepare_error(s)))
C.duckdb_destroy_prepare(&s)
return nil, err
}
return &Stmt{c: c, stmt: &s}, nil
}
func (c *Conn) prepareStmts(ctx context.Context, query string) (*Stmt, error) {
if c.closed {
return nil, errClosedCon
}
stmts, count, errExtract := c.extractStmts(query)
if errExtract != nil {
return nil, errExtract
}
defer C.duckdb_destroy_extracted(&stmts)
for i := C.idx_t(0); i < count-1; i++ {
prepared, err := c.prepareExtractedStmt(stmts, i)
if err != nil {
return nil, err
}
// Execute the statement without any arguments and ignore the result.
_, execErr := prepared.ExecContext(ctx, nil)
closeErr := prepared.Close()
if execErr != nil {
return nil, execErr
}
if closeErr != nil {
return nil, closeErr
}
}
return c.prepareExtractedStmt(stmts, count-1)
}