diff options
author | mattn <mattn.jp@gmail.com> | 2016-04-19 10:33:13 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2016-04-19 10:33:13 +0900 |
commit | 467f50b0c026317ad28fc2c0a08aab6f755cfc7a (patch) | |
tree | 884b346415382b60eee74c5c1bf96299d21f76f8 /sqlite3_omit_load_extension.go | |
parent | Merge pull request #298 from shaxbee/master (diff) | |
parent | Instructions for libsqlite3 on OS X (diff) | |
download | golite-467f50b0c026317ad28fc2c0a08aab6f755cfc7a.tar.gz golite-467f50b0c026317ad28fc2c0a08aab6f755cfc7a.tar.xz |
Merge pull request #299 from shaxbee/master
Build and docs for libsqlite3 on OS X
Diffstat (limited to 'sqlite3_omit_load_extension.go')
-rw-r--r-- | sqlite3_omit_load_extension.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sqlite3_omit_load_extension.go b/sqlite3_omit_load_extension.go index a80cf87..c7b3bfe 100644 --- a/sqlite3_omit_load_extension.go +++ b/sqlite3_omit_load_extension.go @@ -17,3 +17,7 @@ import ( 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") +} |