This commit is contained in:
Nuno Cruces
2023-12-15 00:42:12 +00:00
parent 0171743e88
commit ebbb969cd7
5 changed files with 15 additions and 18 deletions

View File

@@ -547,7 +547,7 @@ func (r *rows) Next(dest []driver.Value) error {
case sqlite3.BLOB:
dest[i] = r.Stmt.ColumnRawBlob(i)
case sqlite3.TEXT:
dest[i] = stringOrTime(r.Stmt.ColumnRawText(i))
dest[i] = stringOrTime(r.Stmt.ColumnText(i))
case sqlite3.NULL:
dest[i] = nil
default: