From bdda6e10e3e81e0e81c629d80fd384f680cbdf67 Mon Sep 17 00:00:00 2001 From: Gert-Jan Timmer Date: Wed, 23 May 2018 22:21:11 +0200 Subject: [PATCH] Add: SQLITE_INTROSPECTION_PRAGMAS --- sqlite3_opt_introspect.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sqlite3_opt_introspect.go diff --git a/sqlite3_opt_introspect.go b/sqlite3_opt_introspect.go new file mode 100644 index 0000000..5d692a7 --- /dev/null +++ b/sqlite3_opt_introspect.go @@ -0,0 +1,13 @@ +// Copyright (C) 2014 Yasuhiro Matsumoto . +// +// Use of this source code is governed by an MIT-style +// license that can be found in the LICENSE file. +// +build introspect + +package sqlite3 + +/* +#cgo CFLAGS: -DSQLITE_INTROSPECTION_PRAGMAS +#cgo LDFLAGS: -lm +*/ +import "C"