We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9e79c0 commit f238067Copy full SHA for f238067
sqlite_context.go
@@ -34,7 +34,6 @@ import (
34
35
const i64 = unsafe.Sizeof(int(0)) > 4
36
37
-type ZeroBlobLength int32
38
type SQLiteContext C.sqlite3_context
39
40
// ResultBool sets the result of an SQL function.
@@ -98,6 +97,6 @@ func (c *SQLiteContext) ResultText(s string) {
98
97
99
// ResultZeroblob sets the result of an SQL function.
100
// See: sqlite3_result_zeroblob, http://sqlite.org/c3ref/result_blob.html
101
-func (c *SQLiteContext) ResultZeroblob(n ZeroBlobLength) {
+func (c *SQLiteContext) ResultZeroblob(n int) {
102
C.sqlite3_result_zeroblob((*C.sqlite3_context)(c), C.int(n))
103
}
0 commit comments