Esempio n. 1
0
// ResultValue sets the result of an SQL function.
// The leftmost value is number 0.
// (See sqlite3_result_value, http://sqlite.org/c3ref/result_blob.html)
func (c *FunctionContext) ResultValue(i int) {
	C.my_result_value(c.sc, c.argv, C.int(i))
}
Esempio n. 2
0
// ResultValue sets the result of an SQL function.
// The leftmost value is number 0.
// (See sqlite3_result_value, http://sqlite.org/c3ref/result_blob.html)
func (c *FunctionContext) ResultValue(i int) {
	C.my_result_value((*C.sqlite3_context)(c.sc), c.argv, C.int(i))
}