aboutsummaryrefslogtreecommitdiff
path: root/example/extension/extension.go
diff options
context:
space:
mode:
authorCarlos Castillo <cookieo9@gmail.com>2013-08-24 20:04:51 -0700
committerCarlos Castillo <cookieo9@gmail.com>2013-08-24 20:04:51 -0700
commit976f43861ffde82e2f0939793124b172d2ebd2ec (patch)
tree40ef04fc05b79faf1187f34c9e4029e28e2049b3 /example/extension/extension.go
parentRename because travis bringup error (diff)
downloadgolite-976f43861ffde82e2f0939793124b172d2ebd2ec.tar.gz
golite-976f43861ffde82e2f0939793124b172d2ebd2ec.tar.xz
Added error return to ConnectHook and fixed extension example
The ConnectHook field of an SQLiteDriver should return an error in case something bad happened during the hook. The extension example needs to load the extension in a ConnectHook, otherwise the extension is only loaded in a single connection in the pool. By putting the extension loading in the ConnectHook, its called for every connection that is opened by the sql.DB.
Diffstat (limited to 'example/extension/extension.go')
-rw-r--r--example/extension/extension.go34
1 files changed, 32 insertions, 2 deletions
diff --git a/example/extension/extension.go b/example/extension/extension.go
index d4b8fdb..49eacf1 100644
--- a/example/extension/extension.go
+++ b/example/extension/extension.go
@@ -8,10 +8,30 @@ import (
)
func main() {
+ const (
+ use_hook = true
+ load_query = "SELECT load_extension('sqlite3_mod_regexp.dll')"
+ )
+
sql.Register("sqlite3_with_extensions",
&sqlite3.SQLiteDriver{
EnableLoadExtension: true,
- ConnectHook: nil,
+ ConnectHook: func(c *sqlite3.SQLiteConn) error {
+ if use_hook {
+ stmt, err := c.Prepare(load_query)
+ if err != nil {
+ return err
+ }
+
+ _, err = stmt.Exec(nil)
+ if err != nil {
+ return err
+ }
+
+ return stmt.Close()
+ }
+ return nil
+ },
})
db, err := sql.Open("sqlite3_with_extensions", ":memory:")
@@ -20,11 +40,21 @@ func main() {
}
defer db.Close()
- _, err = db.Exec("select load_extension('sqlite3_mod_regexp.dll')")
+ if !use_hook {
+ if _, err = db.Exec(load_query); err != nil {
+ log.Fatal(err)
+ }
+ }
+
+ // Force db to make a new connection in pool
+ // by putting the original in a transaction
+ tx, err := db.Begin()
if err != nil {
log.Fatal(err)
}
+ defer tx.Commit()
+ // New connection works (hopefully!)
rows, err := db.Query("select 'hello world' where 'hello world' regexp '^hello.*d$'")
if err != nil {
log.Fatal(err)