Fixed checking parameter count

This commit is contained in:
mattn 2014-08-18 18:48:48 +09:00
parent b718c29aea
commit 72cb8db627
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ 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) {
if len(args) < na {
return nil, errors.New("args is not enough to execute query")
}
res, err = s.Exec(args[:na])