aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
authorScott Lawrence <bytbox@gmail.com>2012-01-20 11:44:24 -0500
committerScott Lawrence <bytbox@gmail.com>2012-01-20 11:44:24 -0500
commitf0825967469ebc1a342acc4b756b098d81ab511a (patch)
tree97dc1e8c46560b04b4904ce691b603e647d393fc /sqlite3.go
parentFixed double free when closing SQLiteStmt (diff)
downloadgolite-f0825967469ebc1a342acc4b756b098d81ab511a.tar.gz
golite-f0825967469ebc1a342acc4b756b098d81ab511a.tar.xz
Fixing build at tip
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 6de2123..088b110 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -20,8 +20,8 @@ _sqlite3_bind_blob(sqlite3_stmt *stmt, int n, void *p, int np) {
import "C"
import (
"errors"
- "exp/sql"
- "exp/sql/driver"
+ "database/sql"
+ "database/sql/driver"
"unsafe"
)