mirror of https://github.com/mattn/go-sqlite3.git
14 lines
153 B
Go
14 lines
153 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
|
||
|
_ "github.com/mattn/go-sqlite3"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
for _, driver := range sql.Drivers() {
|
||
|
println(driver)
|
||
|
}
|
||
|
}
|