We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf72fd2 commit aae55f7Copy full SHA for aae55f7
README.md
@@ -58,8 +58,14 @@ _Go MySQL Driver_ is an implementation of Go's `database/sql/driver` interface.
58
Use `mysql` as `driverName` and a valid [DSN](#dsn-data-source-name) as `dataSourceName`:
59
60
```go
61
-import "database/sql"
62
-import _ "github.com/go-sql-driver/mysql"
+import (
+ "database/sql"
63
+ "time"
64
+
65
+ _ "github.com/go-sql-driver/mysql"
66
+)
67
68
+// ...
69
70
db, err := sql.Open("mysql", "user:password@/dbname")
71
if err != nil {
0 commit comments