bump ncruces/go-sqlite3 to v0.20.2 (#3524)

This commit is contained in:
kim
2024-11-07 00:16:28 +00:00
committed by GitHub
parent b84637801a
commit 45e1609377
27 changed files with 963 additions and 311 deletions

View File

@ -255,6 +255,7 @@ func (s *Stmt) BindText(param int, value string) error {
// BindRawText binds a []byte to the prepared statement as text.
// The leftmost SQL parameter has an index of 1.
// Binding a nil slice is the same as calling [Stmt.BindNull].
//
// https://sqlite.org/c3ref/bind_blob.html
func (s *Stmt) BindRawText(param int, value []byte) error {