aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sqlite3.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3.go b/sqlite3.go
index d2c566a..29166ed 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -525,7 +525,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error {
dest[i] = time.Time{}
}
default:
- dest[i] = s
+ dest[i] = []byte(s)
}
}