aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_load_extension_omit.go
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2018-06-08 10:05:37 +0900
committerGitHub <noreply@github.com>2018-06-08 10:05:37 +0900
commit4218441e44e93e64bc8ed054741a2c33988500b5 (patch)
tree9677a3a0521b9fe7a59cab240a8177e85589cdd3 /sqlite3_load_extension_omit.go
parentMerge pull request #583 from lucasmrod/bug/#542-nil-byte-slice-to-null-blob (diff)
parentFix: test suite remove created files (diff)
downloadgolite-4218441e44e93e64bc8ed054741a2c33988500b5.tar.gz
golite-4218441e44e93e64bc8ed054741a2c33988500b5.tar.xz
Merge pull request #586 from mattn/feature/userauth
Feature/userauth
Diffstat (limited to 'sqlite3_load_extension_omit.go')
-rw-r--r--sqlite3_load_extension_omit.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/sqlite3_load_extension_omit.go b/sqlite3_load_extension_omit.go
new file mode 100644
index 0000000..7ea3294
--- /dev/null
+++ b/sqlite3_load_extension_omit.go
@@ -0,0 +1,24 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
+
+// +build sqlite_omit_load_extension
+
+package sqlite3
+
+/*
+#cgo CFLAGS: -DSQLITE_OMIT_LOAD_EXTENSION
+*/
+import "C"
+import (
+ "errors"
+)
+
+func (c *SQLiteConn) loadExtensions(extensions []string) error {
+ return errors.New("Extensions have been disabled for static builds")
+}
+
+func (c *SQLiteConn) LoadExtension(lib string, entry string) error {
+ return errors.New("Extensions have been disabled for static builds")
+}