Merge pull request #97 from mpl/master

Next(): populate Row with []byte instead of string, as per driver doc
This commit is contained in:
mattn 2013-12-05 15:55:55 -08:00
commit afb8145692
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error {
dest[i] = time.Time{}
}
default:
dest[i] = s
dest[i] = []byte(s)
}
}