-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathdoc.go
More file actions
29 lines (29 loc) · 666 Bytes
/
doc.go
File metadata and controls
29 lines (29 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Package mymysql provides MySQL client API and database/sql driver.
//
// It can be used as a library or as a database/sql driver.
//
// Using as a library
//
// Import native or thrsafe engine. Optionally import autorc for autoreconnect connections.
//
// import (
// "github.com/ziutek/mymysql/mysql"
// _ "github.com/ziutek/mymysql/thrsafe" // OR native
// // _ "github.com/ziutek/mymysql/native"
// "github.com/ziutek/mymysql/autorc" // for autoreconnect
// )
//
//
//
// Using as a Go sql driver
//
// Import Go standard sql package and godrv driver.
//
// import (
// "database/sql"
// _ "github.com/ziutek/mymysql/godrv"
// )
//
//
//
package mymysql