aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_opt_column_metadata.go
diff options
context:
space:
mode:
authorJesse Rittner <rittneje@gmail.com>2021-02-18 09:17:00 -0500
committerrittneje <rittneje@gmail.com>2021-02-18 13:34:41 -0500
commitab91e9342b029f7b8d6097257c9a7874153a5b3f (patch)
tree600d007919a469b949fff36ff5998c872d077acd /sqlite3_opt_column_metadata.go
parentExport sqlite3_column_table_name (#900) (diff)
downloadgolite-ab91e9342b029f7b8d6097257c9a7874153a5b3f.tar.gz
golite-ab91e9342b029f7b8d6097257c9a7874153a5b3f.tar.xz
make column metadata functionality opt-in
Diffstat (limited to 'sqlite3_opt_column_metadata.go')
-rw-r--r--sqlite3_opt_column_metadata.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/sqlite3_opt_column_metadata.go b/sqlite3_opt_column_metadata.go
new file mode 100644
index 0000000..c67fa82
--- /dev/null
+++ b/sqlite3_opt_column_metadata.go
@@ -0,0 +1,21 @@
+// +build sqlite_column_metadata
+
+package sqlite3
+
+/*
+#ifndef USE_LIBSQLITE3
+#cgo CFLAGS: -DSQLITE_ENABLE_COLUMN_METADATA
+#include <sqlite3-binding.h>
+#else
+#include <sqlite3.h>
+#endif
+*/
+import "C"
+
+// ColumnTableName returns the table that is the origin of a particular result
+// column in a SELECT statement.
+//
+// See https://www.sqlite.org/c3ref/column_database_name.html
+func (s *SQLiteStmt) ColumnTableName(n int) string {
+ return C.GoString(C.sqlite3_column_table_name(s.s, C.int(n)))
+}