mysql2 0.3.20 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1 -0
- data/README.md +183 -72
- data/ext/mysql2/client.c +432 -183
- data/ext/mysql2/client.h +10 -38
- data/ext/mysql2/extconf.rb +126 -56
- data/ext/mysql2/infile.c +2 -2
- data/ext/mysql2/mysql2_ext.c +3 -1
- data/ext/mysql2/mysql2_ext.h +13 -14
- data/ext/mysql2/mysql_enc_name_to_ruby.h +62 -58
- data/ext/mysql2/mysql_enc_to_ruby.h +82 -18
- data/ext/mysql2/result.c +505 -164
- data/ext/mysql2/result.h +11 -4
- data/ext/mysql2/statement.c +604 -0
- data/ext/mysql2/statement.h +17 -0
- data/ext/mysql2/wait_for_single_fd.h +2 -1
- data/lib/mysql2/client.rb +89 -28
- data/lib/mysql2/console.rb +1 -1
- data/lib/mysql2/em.rb +6 -9
- data/lib/mysql2/error.rb +55 -35
- data/lib/mysql2/field.rb +3 -0
- data/lib/mysql2/result.rb +2 -0
- data/lib/mysql2/statement.rb +11 -0
- data/lib/mysql2/version.rb +1 -1
- data/lib/mysql2.rb +46 -24
- data/support/5072E1F5.asc +432 -0
- data/support/mysql_enc_to_ruby.rb +15 -11
- data/support/ruby_enc_to_mysql.rb +8 -6
- metadata +22 -77
- data/examples/eventmachine.rb +0 -21
- data/examples/threaded.rb +0 -20
- data/spec/configuration.yml.example +0 -17
- data/spec/em/em_spec.rb +0 -135
- data/spec/my.cnf.example +0 -9
- data/spec/mysql2/client_spec.rb +0 -921
- data/spec/mysql2/error_spec.rb +0 -83
- data/spec/mysql2/result_spec.rb +0 -514
- data/spec/rcov.opts +0 -3
- data/spec/spec_helper.rb +0 -87
- data/spec/test_data +0 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
const char *mysql2_mysql_enc_to_rb[] = {
|
1
|
+
static const char *mysql2_mysql_enc_to_rb[] = {
|
2
2
|
"Big5",
|
3
3
|
"ISO-8859-2",
|
4
4
|
NULL,
|
@@ -54,13 +54,13 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
54
54
|
"macRoman",
|
55
55
|
"UTF-16",
|
56
56
|
"UTF-16",
|
57
|
-
|
57
|
+
"UTF-16LE",
|
58
58
|
"Windows-1256",
|
59
59
|
"Windows-1257",
|
60
60
|
"Windows-1257",
|
61
61
|
"UTF-32",
|
62
62
|
"UTF-32",
|
63
|
-
|
63
|
+
"UTF-16LE",
|
64
64
|
"ASCII-8BIT",
|
65
65
|
NULL,
|
66
66
|
"US-ASCII",
|
@@ -74,7 +74,7 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
74
74
|
NULL,
|
75
75
|
"KOI8-R",
|
76
76
|
"KOI8-R",
|
77
|
-
|
77
|
+
"UTF-8",
|
78
78
|
"ISO-8859-2",
|
79
79
|
"ISO-8859-9",
|
80
80
|
"ISO-8859-13",
|
@@ -119,10 +119,10 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
119
119
|
"UTF-16",
|
120
120
|
"UTF-16",
|
121
121
|
"UTF-16",
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
122
|
+
"UTF-16",
|
123
|
+
"UTF-16",
|
124
|
+
"UTF-16",
|
125
|
+
"UTF-16",
|
126
126
|
NULL,
|
127
127
|
NULL,
|
128
128
|
NULL,
|
@@ -146,6 +146,10 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
146
146
|
"UTF-16BE",
|
147
147
|
"UTF-16BE",
|
148
148
|
"UTF-16BE",
|
149
|
+
"UTF-16BE",
|
150
|
+
"UTF-16BE",
|
151
|
+
"UTF-16BE",
|
152
|
+
"UTF-16BE",
|
149
153
|
NULL,
|
150
154
|
NULL,
|
151
155
|
NULL,
|
@@ -153,11 +157,11 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
153
157
|
NULL,
|
154
158
|
NULL,
|
155
159
|
NULL,
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
160
|
+
"UTF-16BE",
|
161
|
+
"UTF-32",
|
162
|
+
"UTF-32",
|
163
|
+
"UTF-32",
|
164
|
+
"UTF-32",
|
161
165
|
"UTF-32",
|
162
166
|
"UTF-32",
|
163
167
|
"UTF-32",
|
@@ -186,10 +190,6 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
186
190
|
NULL,
|
187
191
|
NULL,
|
188
192
|
NULL,
|
189
|
-
NULL,
|
190
|
-
NULL,
|
191
|
-
NULL,
|
192
|
-
NULL,
|
193
193
|
"UTF-8",
|
194
194
|
"UTF-8",
|
195
195
|
"UTF-8",
|
@@ -210,17 +210,70 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
210
210
|
"UTF-8",
|
211
211
|
"UTF-8",
|
212
212
|
"UTF-8",
|
213
|
+
"UTF-8",
|
214
|
+
"UTF-8",
|
215
|
+
"UTF-8",
|
216
|
+
"UTF-8",
|
217
|
+
NULL,
|
213
218
|
NULL,
|
214
219
|
NULL,
|
215
220
|
NULL,
|
216
221
|
NULL,
|
217
222
|
NULL,
|
218
223
|
NULL,
|
224
|
+
"UTF-8",
|
225
|
+
"UTF-8",
|
226
|
+
"UTF-8",
|
227
|
+
"UTF-8",
|
228
|
+
"UTF-8",
|
229
|
+
"UTF-8",
|
230
|
+
"UTF-8",
|
231
|
+
"UTF-8",
|
232
|
+
"UTF-8",
|
233
|
+
"UTF-8",
|
234
|
+
"UTF-8",
|
235
|
+
"UTF-8",
|
236
|
+
"UTF-8",
|
237
|
+
"UTF-8",
|
238
|
+
"UTF-8",
|
239
|
+
"UTF-8",
|
240
|
+
"UTF-8",
|
241
|
+
"UTF-8",
|
242
|
+
"UTF-8",
|
243
|
+
"UTF-8",
|
244
|
+
"UTF-8",
|
245
|
+
"UTF-8",
|
246
|
+
"UTF-8",
|
247
|
+
"UTF-8",
|
248
|
+
"UTF-8",
|
249
|
+
"GB18030",
|
250
|
+
"GB18030",
|
251
|
+
"GB18030",
|
219
252
|
NULL,
|
220
253
|
NULL,
|
221
254
|
NULL,
|
222
255
|
NULL,
|
256
|
+
"UTF-8",
|
257
|
+
"UTF-8",
|
258
|
+
"UTF-8",
|
259
|
+
"UTF-8",
|
260
|
+
"UTF-8",
|
261
|
+
"UTF-8",
|
262
|
+
"UTF-8",
|
263
|
+
"UTF-8",
|
264
|
+
"UTF-8",
|
265
|
+
"UTF-8",
|
266
|
+
"UTF-8",
|
267
|
+
"UTF-8",
|
268
|
+
"UTF-8",
|
269
|
+
"UTF-8",
|
270
|
+
"UTF-8",
|
271
|
+
"UTF-8",
|
272
|
+
"UTF-8",
|
223
273
|
NULL,
|
274
|
+
"UTF-8",
|
275
|
+
"UTF-8",
|
276
|
+
"UTF-8",
|
224
277
|
NULL,
|
225
278
|
"UTF-8",
|
226
279
|
"UTF-8",
|
@@ -240,7 +293,18 @@ const char *mysql2_mysql_enc_to_rb[] = {
|
|
240
293
|
"UTF-8",
|
241
294
|
"UTF-8",
|
242
295
|
"UTF-8",
|
296
|
+
NULL,
|
297
|
+
"UTF-8",
|
298
|
+
"UTF-8",
|
299
|
+
"UTF-8",
|
300
|
+
NULL,
|
301
|
+
"UTF-8",
|
302
|
+
NULL,
|
303
|
+
NULL,
|
304
|
+
"UTF-8",
|
305
|
+
"UTF-8",
|
306
|
+
"UTF-8",
|
307
|
+
"UTF-8",
|
243
308
|
"UTF-8",
|
244
309
|
"UTF-8"
|
245
310
|
};
|
246
|
-
|