// ResultInt sets the result of an SQL function. // (See sqlite3_result_int, http://sqlite.org/c3ref/result_blob.html) func (c *Context) ResultInt(i int) { if i64 && (i > math.MaxInt32 || i < math.MinInt32) { C.sqlite3_result_int64((*C.sqlite3_context)(c), C.sqlite3_int64(i)) } else { C.sqlite3_result_int((*C.sqlite3_context)(c), C.int(i)) } }
func callbackRetInteger(ctx *C.sqlite3_context, v reflect.Value) error { switch v.Type().Kind() { case reflect.Int64: case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Int, reflect.Uint: v = v.Convert(reflect.TypeOf(int64(0))) case reflect.Bool: b := v.Interface().(bool) if b { v = reflect.ValueOf(int64(1)) } else { v = reflect.ValueOf(int64(0)) } default: return fmt.Errorf("cannot convert %s to INTEGER", v.Type()) } C.sqlite3_result_int64(ctx, C.sqlite3_int64(v.Interface().(int64))) return nil }
// ResultInt64 sets the result of an SQL function. // (See sqlite3_result_int64, http://sqlite.org/c3ref/result_blob.html) func (c *Context) ResultInt64(i int64) { C.sqlite3_result_int64(c.sc, C.sqlite3_int64(i)) }
// ResultInt64 sets the result of an SQL function. // (See sqlite3_result_int64, http://sqlite.org/c3ref/result_blob.html) func (c *Context) ResultInt64(i int64) { C.sqlite3_result_int64((*C.sqlite3_context)(c), C.sqlite3_int64(i)) }