From aaf2bad8d3ab2a4f825c2d3db3f2d17de68e08b4 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 27 Dec 2023 12:16:35 +0100 Subject: Add github.com/mattn/go-sqlite3 This can be used to implement the `database/sql` interface from the Go standard library for sqlite databases. This is the currently preferred method to store user data for Ceres. --- .../mattn/go-sqlite3/sqlite3_opt_column_metadata.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go (limited to 'vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go') diff --git a/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go b/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go new file mode 100644 index 0000000..c67fa82 --- /dev/null +++ b/vendor/github.com/mattn/go-sqlite3/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 +#else +#include +#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))) +} -- cgit v1.2.3-70-g09d2