0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2024-11-07 05:18:43 +00:00
go-sqlite3/_example/custom_driver_name/main.go
2022-01-10 23:30:33 +09:00

14 lines
153 B
Go

package main
import (
"database/sql"
_ "github.com/mattn/go-sqlite3"
)
func main() {
for _, driver := range sql.Drivers() {
println(driver)
}
}