// 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)) }
// 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)) }