Commit a13f41c5 authored by gwenn's avatar gwenn

Misc.

parent 6fa8c5c4
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
// Package sqlite provides access to the SQLite library, version 3.
package sqlite package sqlite
import ( import (
...@@ -16,6 +15,7 @@ func init() { ...@@ -16,6 +15,7 @@ func init() {
} }
type Driver struct { type Driver struct {
} }
type connImpl struct { type connImpl struct {
c *Conn c *Conn
...@@ -82,7 +82,7 @@ func (s *stmtImpl) Close() error { ...@@ -82,7 +82,7 @@ func (s *stmtImpl) Close() error {
} }
func (s *stmtImpl) NumInput() int { func (s *stmtImpl) NumInput() int {
return s.s.BindParameterCount(); return s.s.BindParameterCount()
} }
func (s *stmtImpl) Exec(args []interface{}) (driver.Result, error) { func (s *stmtImpl) Exec(args []interface{}) (driver.Result, error) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment