Skip to content

Commit 2866235

Browse files
committed
Blob I/O: doc
1 parent c6a9868 commit 2866235

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

blob_io.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ type SQLiteBlob struct {
3131

3232
// Blob opens a blob.
3333
//
34-
// The flag parameter is ignored.
34+
// See https://www.sqlite.org/c3ref/blob_open.html for usage.
35+
//
36+
// Should only be used with conn.Raw. The flag parameter is ignored.
3537
func (conn *SQLiteConn) Blob(database, table, column string, rowid int64, flags int) (*SQLiteBlob, error) {
3638
databaseptr := C.CString(database)
3739
defer C.free(unsafe.Pointer(databaseptr))

0 commit comments

Comments
 (0)