mirror of https://github.com/mattn/go-sqlite3.git
Compare commits
2 Commits
ad08b07ade
...
5fc124438d
Author | SHA1 | Date |
---|---|---|
Simon Ser | 5fc124438d | |
Yasuhiro Matsumoto | 82bc911e85 |
|
@ -930,6 +930,7 @@ func (c *SQLiteConn) query(ctx context.Context, query string, args []driver.Name
|
||||||
s.(*SQLiteStmt).cls = true
|
s.(*SQLiteStmt).cls = true
|
||||||
na := s.NumInput()
|
na := s.NumInput()
|
||||||
if len(args)-start < na {
|
if len(args)-start < na {
|
||||||
|
s.Close()
|
||||||
return nil, fmt.Errorf("not enough args to execute query: want %d got %d", na, len(args)-start)
|
return nil, fmt.Errorf("not enough args to execute query: want %d got %d", na, len(args)-start)
|
||||||
}
|
}
|
||||||
// consume the number of arguments used in the current
|
// consume the number of arguments used in the current
|
||||||
|
|
Loading…
Reference in New Issue