Skip to content

Commit c937f45

Browse files
committed
add missing sql drivers
1 parent 5cd33a9 commit c937f45

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

hook_mysql.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import (
44
"database/sql"
55
"fmt"
66
"os"
7+
8+
_ "github.com/go-sql-driver/mysql"
79
)
810

911
const (

hook_sqlite.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import (
44
"database/sql"
55
"fmt"
66
"os"
7+
8+
_ "github.com/mattn/go-sqlite3"
79
)
810

911
const (

0 commit comments

Comments
 (0)