ruby-mysql2 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +1 -0
- data/LICENSE +21 -0
- data/README.md +20 -0
- data/README.org.md +676 -0
- data/lib/mysql2/client.rb +461 -0
- data/lib/mysql2/console.rb +5 -0
- data/lib/mysql2/error.rb +101 -0
- data/lib/mysql2/field.rb +3 -0
- data/lib/mysql2/result.rb +176 -0
- data/lib/mysql2/statement.rb +103 -0
- data/lib/mysql2/version.rb +3 -0
- data/lib/mysql2.rb +87 -0
- metadata +102 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ac01c25cc946f4c49ae6a95ffea9090346663e91970cf070adfeb1d911c487c1
|
4
|
+
data.tar.gz: 0c92c02a252811a483ba85474bb75fc6cc0e3352cd4e9261387a61268eb7f4be
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 30d8214aeec7ba408a5147595b923e84e2b901f804ea0d81b22a6e06eb9de9974607bd50712c6a85ca25fd0bd7193fe5dfaa831d34ec8dba447cc9653ab0da5b
|
7
|
+
data.tar.gz: a334666a1f45ea27c7e7b20b9e3f00cd7dcc9db7dca01bd59fdf6e6aaedf8dcafaad26e35e0e4081dfa1e0cee6caa4f856e262e9dd9df92066cdc83d9ce0c054
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Changes are maintained under [Releases](https://github.com/brianmario/mysql2/releases)
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Brian Lopez
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# Ruby/Mysql2 - Mysql2 compatible pure Ruby library
|
2
|
+
|
3
|
+
Ruby/Mysql2 is a Mysql2 compatible pure Ruby library.
|
4
|
+
|
5
|
+
## Installing
|
6
|
+
|
7
|
+
``` sh
|
8
|
+
gem install ruby-mysql2
|
9
|
+
```
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
See [original README](./README.org.md).
|
14
|
+
|
15
|
+
## Incompatiblity
|
16
|
+
|
17
|
+
- Ruby/Mysql2 does not read MySQL config file such as `my.cnf`.
|
18
|
+
- Only `caching_sha2_password`, `mysql_native_password` and `sha256_password` authentication methods are supported.
|
19
|
+
- Mysql2::EM does not exist.
|
20
|
+
|