コード例 #1
0
ファイル: function.go プロジェクト: npowern/gosqlite
// 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))
}
コード例 #2
0
ファイル: function.go プロジェクト: gwenn/gosqlite
// 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))
}