mirror of https://github.com/mattn/go-sqlite3.git
Merge pull request #291 from diocles/patch-1
Fix sqlite "regexp" function name in documentation
This commit is contained in:
commit
37aa7c6f5b
2
doc.go
2
doc.go
|
@ -102,7 +102,7 @@ call RegisterFunction from ConnectHook.
|
||||||
sql.Register("sqlite3_with_go_func",
|
sql.Register("sqlite3_with_go_func",
|
||||||
&sqlite3.SQLiteDriver{
|
&sqlite3.SQLiteDriver{
|
||||||
ConnectHook: func(conn *sqlite3.SQLiteConn) error {
|
ConnectHook: func(conn *sqlite3.SQLiteConn) error {
|
||||||
return conn.RegisterFunc("regex", regex, true)
|
return conn.RegisterFunc("regexp", regex, true)
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue