This commit is contained in:
Nuno Cruces
2024-11-03 13:13:11 +00:00
parent 90d6ec31b9
commit 363b12ee4c
4 changed files with 132 additions and 16 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 {