forked from googleapis/go-sql-spanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstmt.go
101 lines (85 loc) · 2.47 KB
/
stmt.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
// Copyright 2020 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package spannerdriver
import (
"context"
"database/sql/driver"
"errors"
"fmt"
"cloud.google.com/go/spanner"
"github.com/rakyll/go-sql-driver-spanner/internal"
)
type stmt struct {
conn *conn
numArgs int
query string
}
func (s *stmt) Close() error {
return nil
}
func (s *stmt) NumInput() int {
return s.numArgs
}
func (s *stmt) Exec(args []driver.Value) (driver.Result, error) {
return nil, fmt.Errorf("use ExecContext instead")
}
func (s *stmt) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) {
return s.conn.ExecContext(ctx, s.query, args)
}
func (s *stmt) Query(args []driver.Value) (driver.Rows, error) {
return nil, fmt.Errorf("use QueryContext instead")
}
func (s *stmt) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) {
ss, err := prepareSpannerStmt(s.query, args)
if err != nil {
return nil, err
}
var it *spanner.RowIterator
if s.conn.tx != nil {
it = s.conn.tx.Query(ctx, ss)
} else {
it = s.conn.client.Single().Query(ctx, ss)
}
return &rows{it: it}, nil
}
func (s *stmt) CheckNamedValue(value *driver.NamedValue) error {
return nil
}
func prepareSpannerStmt(q string, args []driver.NamedValue) (spanner.Statement, error) {
names, err := internal.ParseNamedParameters(q)
if err != nil {
return spanner.Statement{}, err
}
if len(names) != len(args) {
return spanner.Statement{}, fmt.Errorf("got %v argument values, but found %v parameters in the sql string", len(args), len(names))
}
ss := spanner.NewStatement(q)
for i, v := range args {
name := args[i].Name
if name == "" {
name = names[i]
}
ss.Params[name] = v.Value
}
return ss, nil
}
type result struct {
rowsAffected int64
}
func (r *result) LastInsertId() (int64, error) {
return 0, errors.New("spanner doesn't autogenerate IDs")
}
func (r *result) RowsAffected() (int64, error) {
return r.rowsAffected, nil
}