File: main.go

package info (click to toggle)
golang-github-mattn-go-sqlite3 1.14.16~ds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports
  • size: 768 kB
  • sloc: cpp: 1,132; ansic: 712; makefile: 60
file content (13 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (7)
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)
	}
}