diff options
author | mattn <mattn.jp@gmail.com> | 2018-06-08 10:05:37 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-08 10:05:37 +0900 |
commit | 4218441e44e93e64bc8ed054741a2c33988500b5 (patch) | |
tree | 9677a3a0521b9fe7a59cab240a8177e85589cdd3 /sqlite3_load_extension_omit.go | |
parent | Merge pull request #583 from lucasmrod/bug/#542-nil-byte-slice-to-null-blob (diff) | |
parent | Fix: test suite remove created files (diff) | |
download | golite-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.go | 24 |
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") +} |