blob: 2fe2396ff3d7f5d7f7d6c078c9ab24cb89c764c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//go:build cgo
// +build cgo
package sqlutil
import (
_ "github.com/mattn/go-sqlite3"
)
const SQLITE_DRIVER_NAME = "sqlite3"
func sqliteDSNExtension(dsn string) string {
return dsn
}
|