You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

439 lines
18 KiB

  1. # Go-MySQL-Driver
  2. A MySQL-Driver for Go's [database/sql](http://golang.org/pkg/database/sql) package
  3. ![Go-MySQL-Driver logo](https://raw.github.com/wiki/go-sql-driver/mysql/gomysql_m.png "Golang Gopher holding the MySQL Dolphin")
  4. **Latest stable Release:** [Version 1.2 (June 03, 2014)](https://github.com/go-sql-driver/mysql/releases)
  5. [![Build Status](https://travis-ci.org/go-sql-driver/mysql.png?branch=master)](https://travis-ci.org/go-sql-driver/mysql)
  6. ---------------------------------------
  7. * [Features](#features)
  8. * [Requirements](#requirements)
  9. * [Installation](#installation)
  10. * [Usage](#usage)
  11. * [DSN (Data Source Name)](#dsn-data-source-name)
  12. * [Password](#password)
  13. * [Protocol](#protocol)
  14. * [Address](#address)
  15. * [Parameters](#parameters)
  16. * [Examples](#examples)
  17. * [LOAD DATA LOCAL INFILE support](#load-data-local-infile-support)
  18. * [time.Time support](#timetime-support)
  19. * [Unicode support](#unicode-support)
  20. * [Testing / Development](#testing--development)
  21. * [License](#license)
  22. ---------------------------------------
  23. ## Features
  24. * Lightweight and [fast](https://github.com/go-sql-driver/sql-benchmark "golang MySQL-Driver performance")
  25. * Native Go implementation. No C-bindings, just pure Go
  26. * Connections over TCP/IPv4, TCP/IPv6, Unix domain sockets or [custom protocols](http://godoc.org/github.com/go-sql-driver/mysql#DialFunc)
  27. * Automatic handling of broken connections
  28. * Automatic Connection Pooling *(by database/sql package)*
  29. * Supports queries larger than 16MB
  30. * Full [`sql.RawBytes`](http://golang.org/pkg/database/sql/#RawBytes) support.
  31. * Intelligent `LONG DATA` handling in prepared statements
  32. * Secure `LOAD DATA LOCAL INFILE` support with file Whitelisting and `io.Reader` support
  33. * Optional `time.Time` parsing
  34. * Optional placeholder interpolation
  35. ## Requirements
  36. * Go 1.2 or higher
  37. * MySQL (4.1+), MariaDB, Percona Server, Google CloudSQL or Sphinx (2.2.3+)
  38. ---------------------------------------
  39. ## Installation
  40. Simple install the package to your [$GOPATH](http://code.google.com/p/go-wiki/wiki/GOPATH "GOPATH") with the [go tool](http://golang.org/cmd/go/ "go command") from shell:
  41. ```bash
  42. $ go get github.com/go-sql-driver/mysql
  43. ```
  44. Make sure [Git is installed](http://git-scm.com/downloads) on your machine and in your system's `PATH`.
  45. ## Usage
  46. _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`](http://golang.org/pkg/database/sql) API then.
  47. Use `mysql` as `driverName` and a valid [DSN](#dsn-data-source-name) as `dataSourceName`:
  48. ```go
  49. import "database/sql"
  50. import _ "github.com/go-sql-driver/mysql"
  51. db, err := sql.Open("mysql", "user:password@/dbname")
  52. ```
  53. [Examples are available in our Wiki](https://github.com/go-sql-driver/mysql/wiki/Examples "Go-MySQL-Driver Examples").
  54. ### DSN (Data Source Name)
  55. The 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):
  56. ```
  57. [username[:password]@][protocol[(address)]]/dbname[?param1=value1&...&paramN=valueN]
  58. ```
  59. A DSN in its fullest form:
  60. ```
  61. username:password@protocol(address)/dbname?param=value
  62. ```
  63. Except for the databasename, all values are optional. So the minimal DSN is:
  64. ```
  65. /dbname
  66. ```
  67. If you do not want to preselect a database, leave `dbname` empty:
  68. ```
  69. /
  70. ```
  71. This has the same effect as an empty DSN string:
  72. ```
  73. ```
  74. Alternatively, [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.
  75. #### Password
  76. Passwords can consist of any character. Escaping is **not** necessary.
  77. #### Protocol
  78. See [net.Dial](http://golang.org/pkg/net/#Dial) for more information which networks are available.
  79. In general you should use an Unix domain socket if available and TCP otherwise for best performance.
  80. #### Address
  81. For TCP and UDP networks, addresses have the form `host:port`.
  82. If `host` is a literal IPv6 address, it must be enclosed in square brackets.
  83. The functions [net.JoinHostPort](http://golang.org/pkg/net/#JoinHostPort) and [net.SplitHostPort](http://golang.org/pkg/net/#SplitHostPort) manipulate addresses in this form.
  84. For 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`.
  85. #### Parameters
  86. *Parameters are case-sensitive!*
  87. Notice 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`.
  88. ##### `allowAllFiles`
  89. ```
  90. Type: bool
  91. Valid Values: true, false
  92. Default: false
  93. ```
  94. `allowAllFiles=true` disables the file Whitelist for `LOAD DATA LOCAL INFILE` and allows *all* files.
  95. [*Might be insecure!*](http://dev.mysql.com/doc/refman/5.7/en/load-data-local.html)
  96. ##### `allowCleartextPasswords`
  97. ```
  98. Type: bool
  99. Valid Values: true, false
  100. Default: false
  101. ```
  102. `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.
  103. ##### `allowNativePasswords`
  104. ```
  105. Type: bool
  106. Valid Values: true, false
  107. Default: false
  108. ```
  109. `allowNativePasswords=true` allows the usage of the mysql native password method.
  110. ##### `allowOldPasswords`
  111. ```
  112. Type: bool
  113. Valid Values: true, false
  114. Default: false
  115. ```
  116. `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).
  117. ##### `charset`
  118. ```
  119. Type: string
  120. Valid Values: <name>
  121. Default: none
  122. ```
  123. Sets 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`).
  124. Usage of the `charset` parameter is discouraged because it issues additional queries to the server.
  125. Unless you need the fallback behavior, please use `collation` instead.
  126. ##### `collation`
  127. ```
  128. Type: string
  129. Valid Values: <name>
  130. Default: utf8_general_ci
  131. ```
  132. Sets 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.
  133. A list of valid charsets for a server is retrievable with `SHOW COLLATION`.
  134. ##### `clientFoundRows`
  135. ```
  136. Type: bool
  137. Valid Values: true, false
  138. Default: false
  139. ```
  140. `clientFoundRows=true` causes an UPDATE to return the number of matching rows instead of the number of rows changed.
  141. ##### `columnsWithAlias`
  142. ```
  143. Type: bool
  144. Valid Values: true, false
  145. Default: false
  146. ```
  147. When `columnsWithAlias` is true, calls to `sql.Rows.Columns()` will return the table alias and the column name separated by a dot. For example:
  148. ```
  149. SELECT u.id FROM users as u
  150. ```
  151. will return `u.id` instead of just `id` if `columnsWithAlias=true`.
  152. ##### `interpolateParams`
  153. ```
  154. Type: bool
  155. Valid Values: true, false
  156. Default: false
  157. ```
  158. If `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`.
  159. *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)!*
  160. ##### `loc`
  161. ```
  162. Type: string
  163. Valid Values: <escaped name>
  164. Default: UTC
  165. ```
  166. Sets the location for time.Time values (when using `parseTime=true`). *"Local"* sets the system's location. See [time.LoadLocation](http://golang.org/pkg/time/#LoadLocation) for details.
  167. Note 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.
  168. Please keep in mind, that param values must be [url.QueryEscape](http://golang.org/pkg/net/url/#QueryEscape)'ed. Alternatively you can manually replace the `/` with `%2F`. For example `US/Pacific` would be `loc=US%2FPacific`.
  169. ##### `maxAllowedPacket`
  170. ```
  171. Type: decimal number
  172. Default: 0
  173. ```
  174. Max packet size allowed in bytes. Use `maxAllowedPacket=0` to automatically fetch the `max_allowed_packet` variable from server.
  175. ##### `multiStatements`
  176. ```
  177. Type: bool
  178. Valid Values: true, false
  179. Default: false
  180. ```
  181. Allow 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.
  182. When `multiStatements` is used, `?` parameters must only be used in the first statement.
  183. ##### `parseTime`
  184. ```
  185. Type: bool
  186. Valid Values: true, false
  187. Default: false
  188. ```
  189. `parseTime=true` changes the output type of `DATE` and `DATETIME` values to `time.Time` instead of `[]byte` / `string`
  190. ##### `readTimeout`
  191. ```
  192. Type: decimal number
  193. Default: 0
  194. ```
  195. I/O read timeout. The value must be a decimal number with an unit suffix ( *"ms"*, *"s"*, *"m"*, *"h"* ), such as *"30s"*, *"0.5m"* or *"1m30s"*.
  196. ##### `strict`
  197. ```
  198. Type: bool
  199. Valid Values: true, false
  200. Default: false
  201. ```
  202. `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.
  203. A 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.
  204. By 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.
  205. ##### `timeout`
  206. ```
  207. Type: decimal number
  208. Default: OS default
  209. ```
  210. *Driver* side connection timeout. The value must be a decimal number with an unit suffix ( *"ms"*, *"s"*, *"m"*, *"h"* ), such as *"30s"*, *"0.5m"* or *"1m30s"*. To set a server side timeout, use the parameter [`wait_timeout`](http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_wait_timeout).
  211. ##### `tls`
  212. ```
  213. Type: bool / string
  214. Valid Values: true, false, skip-verify, <name>
  215. Default: false
  216. ```
  217. `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`](http://godoc.org/github.com/go-sql-driver/mysql#RegisterTLSConfig).
  218. ##### `writeTimeout`
  219. ```
  220. Type: decimal number
  221. Default: 0
  222. ```
  223. I/O write timeout. The value must be a decimal number with an unit suffix ( *"ms"*, *"s"*, *"m"*, *"h"* ), such as *"30s"*, *"0.5m"* or *"1m30s"*.
  224. ##### System Variables
  225. All other parameters are interpreted as system variables:
  226. * `autocommit`: `"SET autocommit=<value>"`
  227. * [`time_zone`](https://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html): `"SET time_zone=<value>"`
  228. * [`tx_isolation`](https://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_tx_isolation): `"SET tx_isolation=<value>"`
  229. * `param`: `"SET <param>=<value>"`
  230. *The values must be [url.QueryEscape](http://golang.org/pkg/net/url/#QueryEscape)'ed!*
  231. #### Examples
  232. ```
  233. user@unix(/path/to/socket)/dbname
  234. ```
  235. ```
  236. root:pw@unix(/tmp/mysql.sock)/myDatabase?loc=Local
  237. ```
  238. ```
  239. user:password@tcp(localhost:5555)/dbname?tls=skip-verify&autocommit=true
  240. ```
  241. Treat warnings as errors by setting the system variable [`sql_mode`](https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html):
  242. ```
  243. user:password@/dbname?sql_mode=TRADITIONAL
  244. ```
  245. TCP via IPv6:
  246. ```
  247. user:password@tcp([de:ad:be:ef::ca:fe]:80)/dbname?timeout=90s&collation=utf8mb4_unicode_ci
  248. ```
  249. TCP on a remote host, e.g. Amazon RDS:
  250. ```
  251. id:password@tcp(your-amazonaws-uri.com:3306)/dbname
  252. ```
  253. Google Cloud SQL on App Engine (First Generation MySQL Server):
  254. ```
  255. user@cloudsql(project-id:instance-name)/dbname
  256. ```
  257. Google Cloud SQL on App Engine (Second Generation MySQL Server):
  258. ```
  259. user@cloudsql(project-id:regionname:instance-name)/dbname
  260. ```
  261. TCP using default port (3306) on localhost:
  262. ```
  263. user:password@tcp/dbname?charset=utf8mb4,utf8&sys_var=esc%40ped
  264. ```
  265. Use the default protocol (tcp) and host (localhost:3306):
  266. ```
  267. user:password@/dbname
  268. ```
  269. No Database preselected:
  270. ```
  271. user:password@/
  272. ```
  273. ### `LOAD DATA LOCAL INFILE` support
  274. For this feature you need direct access to the package. Therefore you must change the import path (no `_`):
  275. ```go
  276. import "github.com/go-sql-driver/mysql"
  277. ```
  278. Files 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)).
  279. To 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.
  280. See the [godoc of Go-MySQL-Driver](http://godoc.org/github.com/go-sql-driver/mysql "golang mysql driver documentation") for details.
  281. ### `time.Time` support
  282. The 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.
  283. However, 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](http://golang.org/pkg/time/#Location) with the `loc` DSN parameter.
  284. **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).
  285. Alternatively you can use the [`NullTime`](http://godoc.org/github.com/go-sql-driver/mysql#NullTime) type as the scan destination, which works with both `time.Time` and `string` / `[]byte`.
  286. ### Unicode support
  287. Since version 1.1 Go-MySQL-Driver automatically uses the collation `utf8_general_ci` by default.
  288. Other collations / charsets can be set using the [`collation`](#collation) DSN parameter.
  289. Version 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.
  290. See http://dev.mysql.com/doc/refman/5.7/en/charset-unicode.html for more details on MySQL's Unicode support.
  291. ## Testing / Development
  292. To 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.
  293. Go-MySQL-Driver is not feature-complete yet. Your help is very appreciated.
  294. If 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).
  295. See the [Contribution Guidelines](https://github.com/go-sql-driver/mysql/blob/master/CONTRIBUTING.md) for details.
  296. ---------------------------------------
  297. ## License
  298. Go-MySQL-Driver is licensed under the [Mozilla Public License Version 2.0](https://raw.github.com/go-sql-driver/mysql/master/LICENSE)
  299. Mozilla summarizes the license scope as follows:
  300. > MPL: The copyleft applies to any files containing MPLed code.
  301. That means:
  302. * You can **use** the **unchanged** source code both in private and commercially
  303. * 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)
  304. * You **needn't publish** the source code of your library as long as the files licensed under the MPL 2.0 are **unchanged**
  305. Please read the [MPL 2.0 FAQ](http://www.mozilla.org/MPL/2.0/FAQ.html) if you have further questions regarding the license.
  306. You can read the full terms here: [LICENSE](https://raw.github.com/go-sql-driver/mysql/master/LICENSE)
  307. ![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")