Check parameter count

This commit is contained in:
mattn 2014-08-18 18:23:58 +09:00
parent 07b39a049e
commit d069822191
1 changed files with 3 additions and 0 deletions

View File

@ -159,6 +159,9 @@ func (c *SQLiteConn) Exec(query string, args []driver.Value) (driver.Result, err
var res driver.Result
if s.(*SQLiteStmt).s != nil {
na := s.NumInput()
if na < len(args) {
return nil, errors.New("args is not enough to execute query")
}
res, err = s.Exec(args[:na])
if err != nil && err != driver.ErrSkip {
s.Close()