/_example/mod_regexp/extension.go
http://github.com/mattn/go-sqlite3 · Go · 43 lines · 35 code · 5 blank · 3 comment · 10 complexity · d30f2fbe41d881269d9cceeed15b4000 MD5 · raw file
- package main
- import (
- "database/sql"
- "fmt"
- "github.com/mattn/go-sqlite3"
- "log"
- )
- func main() {
- sql.Register("sqlite3_with_extensions",
- &sqlite3.SQLiteDriver{
- Extensions: []string{
- "sqlite3_mod_regexp",
- },
- })
- db, err := sql.Open("sqlite3_with_extensions", ":memory:")
- if err != nil {
- log.Fatal(err)
- }
- defer db.Close()
- // 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)
- }
- defer rows.Close()
- for rows.Next() {
- var helloworld string
- rows.Scan(&helloworld)
- fmt.Println(helloworld)
- }
- }