summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/mattn/go-sqlite3@v1.14.16/_example/custom_driver_name/main.go
blob: 3148caed009420bb2397d59a752f29e0fcbfaffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

import (
	"database/sql"

	_ "github.com/mattn/go-sqlite3"
)

func main() {
	for _, driver := range sql.Drivers() {
		println(driver)
	}
}