• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H28-Apr-2017-

.travis/H28-Apr-2017-

.gitignoreH A D28-Apr-201778

.travis.ymlH A D28-Apr-20172.4 KiB

AUTHORSH A D28-Apr-20172.1 KiB

CHANGELOG.mdH A D28-Apr-20175.5 KiB

CONTRIBUTING.mdH A D28-Apr-20171.1 KiB

LICENSEH A D28-Apr-201716.3 KiB

README.mdH A D28-Apr-201718.2 KiB

appengine.goH A D28-Apr-2017470

benchmark_test.goH A D28-Apr-20174.8 KiB

buffer.goH A D28-Apr-20173.3 KiB

collations.goH A D28-Apr-20178.2 KiB

connection.goH A D28-Apr-20178.3 KiB

connection_test.goH A D28-Apr-20171.8 KiB

const.goH A D28-Apr-20173 KiB

driver.goH A D28-Apr-20174.9 KiB

driver_go18_test.goH A D28-Apr-20174.1 KiB

driver_test.goH A D28-Apr-201746 KiB

dsn.goH A D28-Apr-201712.8 KiB

dsn_test.goH A D28-Apr-20177.7 KiB

errors.goH A D28-Apr-20173.7 KiB

errors_test.goH A D28-Apr-2017989

infile.goH A D28-Apr-20174.5 KiB

packets.goH A D28-Apr-201730.6 KiB

packets_test.goH A D28-Apr-20176.3 KiB

result.goH A D28-Apr-2017600

rows.goH A D28-Apr-20173.6 KiB

statement.goH A D28-Apr-20173.5 KiB

transaction.goH A D28-Apr-2017729

utils.goH A D28-Apr-201717.5 KiB

utils_test.goH A D28-Apr-20175.6 KiB

README.md

1# Go-MySQL-Driver
2
3A MySQL-Driver for Go's [database/sql](https://golang.org/pkg/database/sql/) package
4
5![Go-MySQL-Driver logo](https://raw.github.com/wiki/go-sql-driver/mysql/gomysql_m.png "Golang Gopher holding the MySQL Dolphin")
6
7---------------------------------------
8  * [Features](#features)
9  * [Requirements](#requirements)
10  * [Installation](#installation)
11  * [Usage](#usage)
12    * [DSN (Data Source Name)](#dsn-data-source-name)
13      * [Password](#password)
14      * [Protocol](#protocol)
15      * [Address](#address)
16      * [Parameters](#parameters)
17      * [Examples](#examples)
18    * [Connection pool and timeouts](#connection-pool-and-timeouts)
19    * [LOAD DATA LOCAL INFILE support](#load-data-local-infile-support)
20    * [time.Time support](#timetime-support)
21    * [Unicode support](#unicode-support)
22  * [Testing / Development](#testing--development)
23  * [License](#license)
24
25---------------------------------------
26
27## Features
28  * Lightweight and [fast](https://github.com/go-sql-driver/sql-benchmark "golang MySQL-Driver performance")
29  * Native Go implementation. No C-bindings, just pure Go
30  * Connections over TCP/IPv4, TCP/IPv6, Unix domain sockets or [custom protocols](https://godoc.org/github.com/go-sql-driver/mysql#DialFunc)
31  * Automatic handling of broken connections
32  * Automatic Connection Pooling *(by database/sql package)*
33  * Supports queries larger than 16MB
34  * Full [`sql.RawBytes`](https://golang.org/pkg/database/sql/#RawBytes) support.
35  * Intelligent `LONG DATA` handling in prepared statements
36  * Secure `LOAD DATA LOCAL INFILE` support with file Whitelisting and `io.Reader` support
37  * Optional `time.Time` parsing
38  * Optional placeholder interpolation
39
40## Requirements
41  * Go 1.2 or higher
42  * MySQL (4.1+), MariaDB, Percona Server, Google CloudSQL or Sphinx (2.2.3+)
43
44---------------------------------------
45
46## Installation
47Simple install the package to your [$GOPATH](https://github.com/golang/go/wiki/GOPATH "GOPATH") with the [go tool](https://golang.org/cmd/go/ "go command") from shell:
48```bash
49$ go get github.com/go-sql-driver/mysql
50```
51Make sure [Git is installed](https://git-scm.com/downloads) on your machine and in your system's `PATH`.
52
53## Usage
54_Go MySQL Driver_ is an implementation of Go's `database/sql/driver` interface. You only need to import the driver and can use the full [`database/sql`](https://golang.org/pkg/database/sql/) API then.
55
56Use `mysql` as `driverName` and a valid [DSN](#dsn-data-source-name)  as `dataSourceName`:
57```go
58import "database/sql"
59import _ "github.com/go-sql-driver/mysql"
60
61db, err := sql.Open("mysql", "user:password@/dbname")
62```
63
64[Examples are available in our Wiki](https://github.com/go-sql-driver/mysql/wiki/Examples "Go-MySQL-Driver Examples").
65
66
67### DSN (Data Source Name)
68
69The Data Source Name has a common format, like e.g. [PEAR DB](http://pear.php.net/manual/en/package.database.db.intro-dsn.php) uses it, but without type-prefix (optional parts marked by squared brackets):
70```
71[username[:password]@][protocol[(address)]]/dbname[?param1=value1&...&paramN=valueN]
72```
73
74A DSN in its fullest form:
75```
76username:password@protocol(address)/dbname?param=value
77```
78
79Except for the databasename, all values are optional. So the minimal DSN is:
80```
81/dbname
82```
83
84If you do not want to preselect a database, leave `dbname` empty:
85```
86/
87```
88This has the same effect as an empty DSN string:
89```
90
91```
92
93Alternatively, [Config.FormatDSN](https://godoc.org/github.com/go-sql-driver/mysql#Config.FormatDSN) can be used to create a DSN string by filling a struct.
94
95#### Password
96Passwords can consist of any character. Escaping is **not** necessary.
97
98#### Protocol
99See [net.Dial](https://golang.org/pkg/net/#Dial) for more information which networks are available.
100In general you should use an Unix domain socket if available and TCP otherwise for best performance.
101
102#### Address
103For TCP and UDP networks, addresses have the form `host:port`.
104If `host` is a literal IPv6 address, it must be enclosed in square brackets.
105The functions [net.JoinHostPort](https://golang.org/pkg/net/#JoinHostPort) and [net.SplitHostPort](https://golang.org/pkg/net/#SplitHostPort) manipulate addresses in this form.
106
107For Unix domain sockets the address is the absolute path to the MySQL-Server-socket, e.g. `/var/run/mysqld/mysqld.sock` or `/tmp/mysql.sock`.
108
109#### Parameters
110*Parameters are case-sensitive!*
111
112Notice that any of `true`, `TRUE`, `True` or `1` is accepted to stand for a true boolean value. Not surprisingly, false can be specified as any of: `false`, `FALSE`, `False` or `0`.
113
114##### `allowAllFiles`
115
116```
117Type:           bool
118Valid Values:   true, false
119Default:        false
120```
121
122`allowAllFiles=true` disables the file Whitelist for `LOAD DATA LOCAL INFILE` and allows *all* files.
123[*Might be insecure!*](http://dev.mysql.com/doc/refman/5.7/en/load-data-local.html)
124
125##### `allowCleartextPasswords`
126
127```
128Type:           bool
129Valid Values:   true, false
130Default:        false
131```
132
133`allowCleartextPasswords=true` allows using the [cleartext client side plugin](http://dev.mysql.com/doc/en/cleartext-authentication-plugin.html) if required by an account, such as one defined with the [PAM authentication plugin](http://dev.mysql.com/doc/en/pam-authentication-plugin.html). Sending passwords in clear text may be a security problem in some configurations. To avoid problems if there is any possibility that the password would be intercepted, clients should connect to MySQL Server using a method that protects the password. Possibilities include [TLS / SSL](#tls), IPsec, or a private network.
134
135##### `allowNativePasswords`
136
137```
138Type:           bool
139Valid Values:   true, false
140Default:        false
141```
142`allowNativePasswords=true` allows the usage of the mysql native password method.
143
144##### `allowOldPasswords`
145
146```
147Type:           bool
148Valid Values:   true, false
149Default:        false
150```
151`allowOldPasswords=true` allows the usage of the insecure old password method. This should be avoided, but is necessary in some cases. See also [the old_passwords wiki page](https://github.com/go-sql-driver/mysql/wiki/old_passwords).
152
153##### `charset`
154
155```
156Type:           string
157Valid Values:   <name>
158Default:        none
159```
160
161Sets the charset used for client-server interaction (`"SET NAMES <value>"`). If multiple charsets are set (separated by a comma), the following charset is used if setting the charset failes. This enables for example support for `utf8mb4` ([introduced in MySQL 5.5.3](http://dev.mysql.com/doc/refman/5.5/en/charset-unicode-utf8mb4.html)) with fallback to `utf8` for older servers (`charset=utf8mb4,utf8`).
162
163Usage of the `charset` parameter is discouraged because it issues additional queries to the server.
164Unless you need the fallback behavior, please use `collation` instead.
165
166##### `collation`
167
168```
169Type:           string
170Valid Values:   <name>
171Default:        utf8_general_ci
172```
173
174Sets the collation used for client-server interaction on connection. In contrast to `charset`, `collation` does not issue additional queries. If the specified collation is unavailable on the target server, the connection will fail.
175
176A list of valid charsets for a server is retrievable with `SHOW COLLATION`.
177
178##### `clientFoundRows`
179
180```
181Type:           bool
182Valid Values:   true, false
183Default:        false
184```
185
186`clientFoundRows=true` causes an UPDATE to return the number of matching rows instead of the number of rows changed.
187
188##### `columnsWithAlias`
189
190```
191Type:           bool
192Valid Values:   true, false
193Default:        false
194```
195
196When `columnsWithAlias` is true, calls to `sql.Rows.Columns()` will return the table alias and the column name separated by a dot. For example:
197
198```
199SELECT u.id FROM users as u
200```
201
202will return `u.id` instead of just `id` if `columnsWithAlias=true`.
203
204##### `interpolateParams`
205
206```
207Type:           bool
208Valid Values:   true, false
209Default:        false
210```
211
212If `interpolateParams` is true, placeholders (`?`) in calls to `db.Query()` and `db.Exec()` are interpolated into a single query string with given parameters. This reduces the number of roundtrips, since the driver has to prepare a statement, execute it with given parameters and close the statement again with `interpolateParams=false`.
213
214*This can not be used together with the multibyte encodings BIG5, CP932, GB2312, GBK or SJIS. These are blacklisted as they may [introduce a SQL injection vulnerability](http://stackoverflow.com/a/12118602/3430118)!*
215
216##### `loc`
217
218```
219Type:           string
220Valid Values:   <escaped name>
221Default:        UTC
222```
223
224Sets the location for time.Time values (when using `parseTime=true`). *"Local"* sets the system's location. See [time.LoadLocation](https://golang.org/pkg/time/#LoadLocation) for details.
225
226Note that this sets the location for time.Time values but does not change MySQL's [time_zone setting](https://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html). For that see the [time_zone system variable](#system-variables), which can also be set as a DSN parameter.
227
228Please keep in mind, that param values must be [url.QueryEscape](https://golang.org/pkg/net/url/#QueryEscape)'ed. Alternatively you can manually replace the `/` with `%2F`. For example `US/Pacific` would be `loc=US%2FPacific`.
229
230##### `maxAllowedPacket`
231```
232Type:          decimal number
233Default:       0
234```
235
236Max packet size allowed in bytes. Use `maxAllowedPacket=0` to automatically fetch the `max_allowed_packet` variable from server.
237
238##### `multiStatements`
239
240```
241Type:           bool
242Valid Values:   true, false
243Default:        false
244```
245
246Allow multiple statements in one query. While this allows batch queries, it also greatly increases the risk of SQL injections. Only the result of the first query is returned, all other results are silently discarded.
247
248When `multiStatements` is used, `?` parameters must only be used in the first statement.
249
250##### `parseTime`
251
252```
253Type:           bool
254Valid Values:   true, false
255Default:        false
256```
257
258`parseTime=true` changes the output type of `DATE` and `DATETIME` values to `time.Time` instead of `[]byte` / `string`
259
260
261##### `readTimeout`
262
263```
264Type:           duration
265Default:        0
266```
267
268I/O read timeout. The value must be a decimal number with a unit suffix (*"ms"*, *"s"*, *"m"*, *"h"*), such as *"30s"*, *"0.5m"* or *"1m30s"*.
269
270##### `strict`
271
272```
273Type:           bool
274Valid Values:   true, false
275Default:        false
276```
277
278`strict=true` enables a driver-side strict mode in which MySQL warnings are treated as errors. This mode should not be used in production as it may lead to data corruption in certain situations.
279
280A server-side strict mode, which is safe for production use, can be set via the [`sql_mode`](https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html) system variable.
281
282By default MySQL also treats notes as warnings. Use [`sql_notes=false`](http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_sql_notes) to ignore notes.
283
284##### `timeout`
285
286```
287Type:           duration
288Default:        OS default
289```
290
291Timeout for establishing connections, aka dial timeout. The value must be a decimal number with a unit suffix (*"ms"*, *"s"*, *"m"*, *"h"*), such as *"30s"*, *"0.5m"* or *"1m30s"*.
292
293##### `tls`
294
295```
296Type:           bool / string
297Valid Values:   true, false, skip-verify, <name>
298Default:        false
299```
300
301`tls=true` enables TLS / SSL encrypted connection to the server. Use `skip-verify` if you want to use a self-signed or invalid certificate (server side). Use a custom value registered with [`mysql.RegisterTLSConfig`](https://godoc.org/github.com/go-sql-driver/mysql#RegisterTLSConfig).
302
303##### `writeTimeout`
304
305```
306Type:           duration
307Default:        0
308```
309
310I/O write timeout. The value must be a decimal number with a unit suffix (*"ms"*, *"s"*, *"m"*, *"h"*), such as *"30s"*, *"0.5m"* or *"1m30s"*.
311
312
313##### System Variables
314
315Any other parameters are interpreted as system variables:
316  * `<boolean_var>=<value>`: `SET <boolean_var>=<value>`
317  * `<enum_var>=<value>`: `SET <enum_var>=<value>`
318  * `<string_var>=%27<value>%27`: `SET <string_var>='<value>'`
319
320Rules:
321* The values for string variables must be quoted with '
322* The values must also be [url.QueryEscape](http://golang.org/pkg/net/url/#QueryEscape)'ed!
323 (which implies values of string variables must be wrapped with `%27`)
324
325Examples:
326  * `autocommit=1`: `SET autocommit=1`
327  * [`time_zone=%27Europe%2FParis%27`](https://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html): `SET time_zone='Europe/Paris'`
328  * [`tx_isolation=%27REPEATABLE-READ%27`](https://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_tx_isolation): `SET tx_isolation='REPEATABLE-READ'`
329
330
331#### Examples
332```
333user@unix(/path/to/socket)/dbname
334```
335
336```
337root:pw@unix(/tmp/mysql.sock)/myDatabase?loc=Local
338```
339
340```
341user:password@tcp(localhost:5555)/dbname?tls=skip-verify&autocommit=true
342```
343
344Treat warnings as errors by setting the system variable [`sql_mode`](https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html):
345```
346user:password@/dbname?sql_mode=TRADITIONAL
347```
348
349TCP via IPv6:
350```
351user:password@tcp([de:ad:be:ef::ca:fe]:80)/dbname?timeout=90s&collation=utf8mb4_unicode_ci
352```
353
354TCP on a remote host, e.g. Amazon RDS:
355```
356id:password@tcp(your-amazonaws-uri.com:3306)/dbname
357```
358
359Google Cloud SQL on App Engine (First Generation MySQL Server):
360```
361user@cloudsql(project-id:instance-name)/dbname
362```
363
364Google Cloud SQL on App Engine (Second Generation MySQL Server):
365```
366user@cloudsql(project-id:regionname:instance-name)/dbname
367```
368
369TCP using default port (3306) on localhost:
370```
371user:password@tcp/dbname?charset=utf8mb4,utf8&sys_var=esc%40ped
372```
373
374Use the default protocol (tcp) and host (localhost:3306):
375```
376user:password@/dbname
377```
378
379No Database preselected:
380```
381user:password@/
382```
383
384
385### Connection pool and timeouts
386The connection pool is managed by Go's database/sql package. For details on how to configure the size of the pool and how long connections stay in the pool see `*DB.SetMaxOpenConns`, `*DB.SetMaxIdleConns`, and `*DB.SetConnMaxLifetime` in the [database/sql documentation](https://golang.org/pkg/database/sql/). The read, write, and dial timeouts for each individual connection are configured with the DSN parameters [`readTimeout`](#readtimeout), [`writeTimeout`](#writetimeout), and [`timeout`](#timeout), respectively.
387
388
389### `LOAD DATA LOCAL INFILE` support
390For this feature you need direct access to the package. Therefore you must change the import path (no `_`):
391```go
392import "github.com/go-sql-driver/mysql"
393```
394
395Files must be whitelisted by registering them with `mysql.RegisterLocalFile(filepath)` (recommended) or the Whitelist check must be deactivated by using the DSN parameter `allowAllFiles=true` ([*Might be insecure!*](http://dev.mysql.com/doc/refman/5.7/en/load-data-local.html)).
396
397To use a `io.Reader` a handler function must be registered with `mysql.RegisterReaderHandler(name, handler)` which returns a `io.Reader` or `io.ReadCloser`. The Reader is available with the filepath `Reader::<name>` then. Choose different names for different handlers and `DeregisterReaderHandler` when you don't need it anymore.
398
399See the [godoc of Go-MySQL-Driver](https://godoc.org/github.com/go-sql-driver/mysql "golang mysql driver documentation") for details.
400
401
402### `time.Time` support
403The default internal output type of MySQL `DATE` and `DATETIME` values is `[]byte` which allows you to scan the value into a `[]byte`, `string` or `sql.RawBytes` variable in your programm.
404
405However, many want to scan MySQL `DATE` and `DATETIME` values into `time.Time` variables, which is the logical opposite in Go to `DATE` and `DATETIME` in MySQL. You can do that by changing the internal output type from `[]byte` to `time.Time` with the DSN parameter `parseTime=true`. You can set the default [`time.Time` location](https://golang.org/pkg/time/#Location) with the `loc` DSN parameter.
406
407**Caution:** As of Go 1.1, this makes `time.Time` the only variable type you can scan `DATE` and `DATETIME` values into. This breaks for example [`sql.RawBytes` support](https://github.com/go-sql-driver/mysql/wiki/Examples#rawbytes).
408
409Alternatively you can use the [`NullTime`](https://godoc.org/github.com/go-sql-driver/mysql#NullTime) type as the scan destination, which works with both `time.Time` and `string` / `[]byte`.
410
411
412### Unicode support
413Since version 1.1 Go-MySQL-Driver automatically uses the collation `utf8_general_ci` by default.
414
415Other collations / charsets can be set using the [`collation`](#collation) DSN parameter.
416
417Version 1.0 of the driver recommended adding `&charset=utf8` (alias for `SET NAMES utf8`) to the DSN to enable proper UTF-8 support. This is not necessary anymore. The [`collation`](#collation) parameter should be preferred to set another collation / charset than the default.
418
419See http://dev.mysql.com/doc/refman/5.7/en/charset-unicode.html for more details on MySQL's Unicode support.
420
421
422## Testing / Development
423To run the driver tests you may need to adjust the configuration. See the [Testing Wiki-Page](https://github.com/go-sql-driver/mysql/wiki/Testing "Testing") for details.
424
425Go-MySQL-Driver is not feature-complete yet. Your help is very appreciated.
426If you want to contribute, you can work on an [open issue](https://github.com/go-sql-driver/mysql/issues?state=open) or review a [pull request](https://github.com/go-sql-driver/mysql/pulls).
427
428See the [Contribution Guidelines](https://github.com/go-sql-driver/mysql/blob/master/CONTRIBUTING.md) for details.
429
430---------------------------------------
431
432## License
433Go-MySQL-Driver is licensed under the [Mozilla Public License Version 2.0](https://raw.github.com/go-sql-driver/mysql/master/LICENSE)
434
435Mozilla summarizes the license scope as follows:
436> MPL: The copyleft applies to any files containing MPLed code.
437
438
439That means:
440  * You can **use** the **unchanged** source code both in private and commercially
441  * When distributing, you **must publish** the source code of any **changed files** licensed under the MPL 2.0 under a) the MPL 2.0 itself or b) a compatible license (e.g. GPL 3.0 or Apache License 2.0)
442  * You **needn't publish** the source code of your library as long as the files licensed under the MPL 2.0 are **unchanged**
443
444Please read the [MPL 2.0 FAQ](https://www.mozilla.org/en-US/MPL/2.0/FAQ/) if you have further questions regarding the license.
445
446You can read the full terms here: [LICENSE](https://raw.github.com/go-sql-driver/mysql/master/LICENSE)
447
448![Go Gopher and MySQL Dolphin](https://raw.github.com/wiki/go-sql-driver/mysql/go-mysql-driver_m.jpg "Golang Gopher transporting the MySQL Dolphin in a wheelbarrow")
449
450