mirror of https://github.com/mattn/go-sqlite3.git
gofmt.
This commit is contained in:
parent
79234d62ef
commit
0b35f58e9d
|
@ -31,6 +31,7 @@ func init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
type SQLiteDriver struct {
|
type SQLiteDriver struct {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type SQLiteConn struct {
|
type SQLiteConn struct {
|
||||||
|
@ -131,7 +132,7 @@ func (c *SQLiteConn) Prepare(query string) (driver.Stmt, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SQLiteStmt) Close() error {
|
func (s *SQLiteStmt) Close() error {
|
||||||
rv := C.sqlite3_finalize(s.s);
|
rv := C.sqlite3_finalize(s.s)
|
||||||
if rv != C.SQLITE_OK {
|
if rv != C.SQLITE_OK {
|
||||||
return errors.New(C.GoString(C.sqlite3_errmsg(s.c.db)))
|
return errors.New(C.GoString(C.sqlite3_errmsg(s.c.db)))
|
||||||
}
|
}
|
||||||
|
@ -234,7 +235,7 @@ func (rc *SQLiteRows) Next(dest []interface{}) error {
|
||||||
return errors.New(C.GoString(C.sqlite3_errmsg(rc.s.c.db)))
|
return errors.New(C.GoString(C.sqlite3_errmsg(rc.s.c.db)))
|
||||||
}
|
}
|
||||||
for i := range dest {
|
for i := range dest {
|
||||||
switch (C.sqlite3_column_type(rc.s.s, C.int(i))) {
|
switch C.sqlite3_column_type(rc.s.s, C.int(i)) {
|
||||||
case C.SQLITE_INTEGER:
|
case C.SQLITE_INTEGER:
|
||||||
dest[i] = int64(C.sqlite3_column_int64(rc.s.s, C.int(i)))
|
dest[i] = int64(C.sqlite3_column_int64(rc.s.s, C.int(i)))
|
||||||
case C.SQLITE_FLOAT:
|
case C.SQLITE_FLOAT:
|
||||||
|
|
Loading…
Reference in New Issue