sqlconstructor 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +15 -0
  2. data/LICENSE.md +16 -0
  3. data/README.md +161 -0
  4. data/Rakefile +11 -0
  5. data/doc/Object.html +267 -0
  6. data/doc/Rakefile.html +150 -0
  7. data/doc/SQLAliasedList.html +717 -0
  8. data/doc/SQLColumn.html +326 -0
  9. data/doc/SQLCondList.html +318 -0
  10. data/doc/SQLConditional.html +1082 -0
  11. data/doc/SQLConditional/BasicCond.html +325 -0
  12. data/doc/SQLConstructor.html +763 -0
  13. data/doc/SQLConstructor/BasicDelete.html +383 -0
  14. data/doc/SQLConstructor/BasicDelete_mysql.html +368 -0
  15. data/doc/SQLConstructor/BasicInsert.html +339 -0
  16. data/doc/SQLConstructor/BasicInsert_mysql.html +325 -0
  17. data/doc/SQLConstructor/BasicJoin.html +408 -0
  18. data/doc/SQLConstructor/BasicJoin_mysql.html +439 -0
  19. data/doc/SQLConstructor/BasicSelect.html +554 -0
  20. data/doc/SQLConstructor/BasicSelect_example.html +288 -0
  21. data/doc/SQLConstructor/BasicSelect_mysql.html +466 -0
  22. data/doc/SQLConstructor/BasicUnion.html +396 -0
  23. data/doc/SQLConstructor/BasicUpdate.html +409 -0
  24. data/doc/SQLConstructor/BasicUpdate_mysql.html +310 -0
  25. data/doc/SQLConstructor/GenericQuery.html +797 -0
  26. data/doc/SQLConstructor/QAttr.html +398 -0
  27. data/doc/SQLConstructorTest.html +603 -0
  28. data/doc/SQLExporter.html +382 -0
  29. data/doc/SQLExporter/Exporter_generic.html +413 -0
  30. data/doc/SQLExporter/Exporter_mysql.html +395 -0
  31. data/doc/SQLObject.html +525 -0
  32. data/doc/SQLValList.html +322 -0
  33. data/doc/SQLValue.html +375 -0
  34. data/doc/created.rid +12 -0
  35. data/doc/images/brick.png +0 -0
  36. data/doc/images/brick_link.png +0 -0
  37. data/doc/images/bug.png +0 -0
  38. data/doc/images/bullet_black.png +0 -0
  39. data/doc/images/bullet_toggle_minus.png +0 -0
  40. data/doc/images/bullet_toggle_plus.png +0 -0
  41. data/doc/images/date.png +0 -0
  42. data/doc/images/find.png +0 -0
  43. data/doc/images/loadingAnimation.gif +0 -0
  44. data/doc/images/macFFBgHack.png +0 -0
  45. data/doc/images/package.png +0 -0
  46. data/doc/images/page_green.png +0 -0
  47. data/doc/images/page_white_text.png +0 -0
  48. data/doc/images/page_white_width.png +0 -0
  49. data/doc/images/plugin.png +0 -0
  50. data/doc/images/ruby.png +0 -0
  51. data/doc/images/tag_green.png +0 -0
  52. data/doc/images/wrench.png +0 -0
  53. data/doc/images/wrench_orange.png +0 -0
  54. data/doc/images/zoom.png +0 -0
  55. data/doc/index.html +356 -0
  56. data/doc/js/darkfish.js +118 -0
  57. data/doc/js/jquery.js +32 -0
  58. data/doc/js/quicksearch.js +114 -0
  59. data/doc/js/thickbox-compressed.js +10 -0
  60. data/doc/lib/dialects/example-constructor_rb.html +52 -0
  61. data/doc/lib/dialects/mysql-constructor_rb.html +52 -0
  62. data/doc/lib/dialects/mysql-exporter_rb.html +54 -0
  63. data/doc/lib/sqlconditional_rb.html +64 -0
  64. data/doc/lib/sqlconstructor_rb.html +52 -0
  65. data/doc/lib/sqlerrors_rb.html +54 -0
  66. data/doc/lib/sqlexporter_rb.html +55 -0
  67. data/doc/lib/sqlobject_rb.html +54 -0
  68. data/doc/rdoc.css +763 -0
  69. data/doc/test/queries_rb.html +56 -0
  70. data/doc/test_rb.html +52 -0
  71. data/lib/dialects/example-constructor.rb +45 -0
  72. data/lib/dialects/mysql-constructor.rb +247 -0
  73. data/lib/dialects/mysql-exporter.rb +108 -0
  74. data/lib/sqlconditional.rb +196 -0
  75. data/lib/sqlconstructor.rb +708 -0
  76. data/lib/sqlerrors.rb +15 -0
  77. data/lib/sqlexporter.rb +125 -0
  78. data/lib/sqlobject.rb +284 -0
  79. data/test/queries.rb +92 -0
  80. metadata +121 -0
@@ -0,0 +1,339 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: SQLConstructor::BasicInsert</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="../js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="../js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="../js/darkfish.js" type="text/javascript" charset="utf-8"></script>
16
+
17
+ </head>
18
+ <body id="top" class="class">
19
+
20
+ <div id="metadata">
21
+ <div id="home-metadata">
22
+ <div id="home-section" class="section">
23
+ <h3 class="section-header">
24
+ <a href="../index.html">Home</a>
25
+ <a href="../index.html#classes">Classes</a>
26
+ <a href="../index.html#methods">Methods</a>
27
+ </h3>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="file-metadata">
32
+ <div id="file-list-section" class="section">
33
+ <h3 class="section-header">In Files</h3>
34
+ <div class="section-body">
35
+ <ul>
36
+
37
+ <li><a href="../lib/sqlconstructor_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/sqlconstructor.rb">lib/sqlconstructor.rb</a></li>
39
+
40
+ </ul>
41
+ </div>
42
+ </div>
43
+
44
+
45
+ </div>
46
+
47
+ <div id="class-metadata">
48
+
49
+ <!-- Parent Class -->
50
+ <div id="parent-class-section" class="section">
51
+ <h3 class="section-header">Parent</h3>
52
+
53
+ <p class="link"><a href="GenericQuery.html">SQLConstructor::GenericQuery</a></p>
54
+
55
+ </div>
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+ <!-- Method Quickref -->
64
+ <div id="method-list-section" class="section">
65
+ <h3 class="section-header">Methods</h3>
66
+ <ul class="link-list">
67
+
68
+ <li><a href="#method-c-new">::new</a></li>
69
+
70
+ </ul>
71
+ </div>
72
+
73
+
74
+
75
+ </div>
76
+
77
+ <div id="project-metadata">
78
+
79
+
80
+ <div id="fileindex-section" class="section project-section">
81
+ <h3 class="section-header">Files</h3>
82
+ <ul>
83
+
84
+ <li class="file"><a href="../Rakefile.html">Rakefile</a></li>
85
+
86
+ </ul>
87
+ </div>
88
+
89
+
90
+ <div id="classindex-section" class="section project-section">
91
+ <h3 class="section-header">Class/Module Index
92
+ <span class="search-toggle"><img src="../images/find.png"
93
+ height="16" width="16" alt="[+]"
94
+ title="show/hide quicksearch" /></span></h3>
95
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
96
+ <fieldset>
97
+ <legend>Quicksearch</legend>
98
+ <input type="text" name="quicksearch" value=""
99
+ class="quicksearch-field" />
100
+ </fieldset>
101
+ </form>
102
+
103
+ <ul class="link-list">
104
+
105
+ <li><a href="../SQLConstructor.html">SQLConstructor</a></li>
106
+
107
+ <li><a href="../SQLConstructor/BasicDelete.html">SQLConstructor::BasicDelete</a></li>
108
+
109
+ <li><a href="../SQLConstructor/BasicDelete_mysql.html">SQLConstructor::BasicDelete_mysql</a></li>
110
+
111
+ <li><a href="../SQLConstructor/BasicInsert.html">SQLConstructor::BasicInsert</a></li>
112
+
113
+ <li><a href="../SQLConstructor/BasicInsert_mysql.html">SQLConstructor::BasicInsert_mysql</a></li>
114
+
115
+ <li><a href="../SQLConstructor/BasicJoin.html">SQLConstructor::BasicJoin</a></li>
116
+
117
+ <li><a href="../SQLConstructor/BasicJoin_mysql.html">SQLConstructor::BasicJoin_mysql</a></li>
118
+
119
+ <li><a href="../SQLConstructor/BasicSelect.html">SQLConstructor::BasicSelect</a></li>
120
+
121
+ <li><a href="../SQLConstructor/BasicSelect_example.html">SQLConstructor::BasicSelect_example</a></li>
122
+
123
+ <li><a href="../SQLConstructor/BasicSelect_mysql.html">SQLConstructor::BasicSelect_mysql</a></li>
124
+
125
+ <li><a href="../SQLConstructor/BasicUnion.html">SQLConstructor::BasicUnion</a></li>
126
+
127
+ <li><a href="../SQLConstructor/BasicUpdate.html">SQLConstructor::BasicUpdate</a></li>
128
+
129
+ <li><a href="../SQLConstructor/BasicUpdate_mysql.html">SQLConstructor::BasicUpdate_mysql</a></li>
130
+
131
+ <li><a href="../SQLConstructor/GenericQuery.html">SQLConstructor::GenericQuery</a></li>
132
+
133
+ <li><a href="../SQLConstructor/QAttr.html">SQLConstructor::QAttr</a></li>
134
+
135
+ <li><a href="../SQLExporter.html">SQLExporter</a></li>
136
+
137
+ <li><a href="../SQLExporter/Exporter_generic.html">SQLExporter::Exporter_generic</a></li>
138
+
139
+ <li><a href="../SQLExporter/Exporter_mysql.html">SQLExporter::Exporter_mysql</a></li>
140
+
141
+ <li><a href="../SQLConditional.html">SQLConditional</a></li>
142
+
143
+ <li><a href="../SQLConditional/BasicCond.html">SQLConditional::BasicCond</a></li>
144
+
145
+ <li><a href="../Object.html">Object</a></li>
146
+
147
+ <li><a href="../SQLAliasedList.html">SQLAliasedList</a></li>
148
+
149
+ <li><a href="../SQLColumn.html">SQLColumn</a></li>
150
+
151
+ <li><a href="../SQLCondList.html">SQLCondList</a></li>
152
+
153
+ <li><a href="../SQLConstructorTest.html">SQLConstructorTest</a></li>
154
+
155
+ <li><a href="../SQLObject.html">SQLObject</a></li>
156
+
157
+ <li><a href="../SQLValList.html">SQLValList</a></li>
158
+
159
+ <li><a href="../SQLValue.html">SQLValue</a></li>
160
+
161
+ </ul>
162
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
163
+ </div>
164
+
165
+
166
+ </div>
167
+ </div>
168
+
169
+ <div id="documentation">
170
+ <h1 class="class">SQLConstructor::BasicInsert</h1>
171
+
172
+ <div id="description" class="description">
173
+
174
+ <p>Internal class which represents a basic INSERT statement.</p>
175
+
176
+ </div><!-- description -->
177
+
178
+
179
+
180
+
181
+ <div id="5Buntitled-5D" class="documentation-section">
182
+
183
+
184
+
185
+
186
+
187
+ <!-- Constants -->
188
+ <div id="constants-list" class="section">
189
+ <h3 class="section-header">Constants</h3>
190
+ <dl>
191
+
192
+ <dt><a name="METHODS">METHODS</a></dt>
193
+
194
+ <dd class="description"></dd>
195
+
196
+
197
+ </dl>
198
+ </div>
199
+
200
+
201
+
202
+ <!-- Attributes -->
203
+ <div id="attribute-method-details" class="method-section section">
204
+ <h3 class="section-header">Attributes</h3>
205
+
206
+
207
+ <div id="ins_columns-attribute-method" class="method-detail">
208
+ <a name="ins_columns"></a>
209
+
210
+ <div class="method-heading attribute-method-heading">
211
+ <span class="method-name">ins_columns</span><span
212
+ class="attribute-access-type">[R]</span>
213
+ </div>
214
+
215
+ <div class="method-description">
216
+
217
+
218
+
219
+ </div>
220
+ </div>
221
+
222
+ <div id="ins_into-attribute-method" class="method-detail">
223
+ <a name="ins_into"></a>
224
+
225
+ <div class="method-heading attribute-method-heading">
226
+ <span class="method-name">ins_into</span><span
227
+ class="attribute-access-type">[R]</span>
228
+ </div>
229
+
230
+ <div class="method-description">
231
+
232
+
233
+
234
+ </div>
235
+ </div>
236
+
237
+ <div id="ins_select-attribute-method" class="method-detail">
238
+ <a name="ins_select"></a>
239
+
240
+ <div class="method-heading attribute-method-heading">
241
+ <span class="method-name">ins_select</span><span
242
+ class="attribute-access-type">[R]</span>
243
+ </div>
244
+
245
+ <div class="method-description">
246
+
247
+
248
+
249
+ </div>
250
+ </div>
251
+
252
+ <div id="ins_set-attribute-method" class="method-detail">
253
+ <a name="ins_set"></a>
254
+
255
+ <div class="method-heading attribute-method-heading">
256
+ <span class="method-name">ins_set</span><span
257
+ class="attribute-access-type">[R]</span>
258
+ </div>
259
+
260
+ <div class="method-description">
261
+
262
+
263
+
264
+ </div>
265
+ </div>
266
+
267
+ <div id="ins_values-attribute-method" class="method-detail">
268
+ <a name="ins_values"></a>
269
+
270
+ <div class="method-heading attribute-method-heading">
271
+ <span class="method-name">ins_values</span><span
272
+ class="attribute-access-type">[R]</span>
273
+ </div>
274
+
275
+ <div class="method-description">
276
+
277
+
278
+
279
+ </div>
280
+ </div>
281
+
282
+ </div><!-- attribute-method-details -->
283
+
284
+
285
+ <!-- Methods -->
286
+
287
+ <div id="public-class-method-details" class="method-section section">
288
+ <h3 class="section-header">Public Class Methods</h3>
289
+
290
+
291
+ <div id="new-method" class="method-detail ">
292
+ <a name="method-c-new"></a>
293
+
294
+
295
+ <div class="method-heading">
296
+ <span class="method-name">new</span><span
297
+ class="method-args">( _caller )</span>
298
+ <span class="method-click-advice">click to toggle source</span>
299
+ </div>
300
+
301
+
302
+ <div class="method-description">
303
+
304
+ <p>Class constructor. _caller - the caller object</p>
305
+
306
+
307
+
308
+ <div class="method-source-code" id="new-source">
309
+ <pre>
310
+ <span class="ruby-comment"># File lib/sqlconstructor.rb, line 659</span>
311
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span> ( <span class="ruby-identifier">_caller</span> )
312
+ <span class="ruby-keyword">super</span>
313
+ <span class="ruby-keyword">end</span></pre>
314
+ </div><!-- new-source -->
315
+
316
+ </div>
317
+
318
+
319
+
320
+
321
+ </div><!-- new-method -->
322
+
323
+
324
+ </div><!-- public-class-method-details -->
325
+
326
+ </div><!-- 5Buntitled-5D -->
327
+
328
+
329
+ </div><!-- documentation -->
330
+
331
+ <div id="validator-badges">
332
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
333
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
334
+ Rdoc Generator</a> 2</small>.</p>
335
+ </div>
336
+
337
+ </body>
338
+ </html>
339
+
@@ -0,0 +1,325 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
7
+
8
+ <title>Class: SQLConstructor::BasicInsert_mysql</title>
9
+
10
+ <link rel="stylesheet" href="../rdoc.css" type="text/css" media="screen" />
11
+
12
+ <script src="../js/jquery.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="../js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="../js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="../js/darkfish.js" type="text/javascript" charset="utf-8"></script>
16
+
17
+ </head>
18
+ <body id="top" class="class">
19
+
20
+ <div id="metadata">
21
+ <div id="home-metadata">
22
+ <div id="home-section" class="section">
23
+ <h3 class="section-header">
24
+ <a href="../index.html">Home</a>
25
+ <a href="../index.html#classes">Classes</a>
26
+ <a href="../index.html#methods">Methods</a>
27
+ </h3>
28
+ </div>
29
+ </div>
30
+
31
+ <div id="file-metadata">
32
+ <div id="file-list-section" class="section">
33
+ <h3 class="section-header">In Files</h3>
34
+ <div class="section-body">
35
+ <ul>
36
+
37
+ <li><a href="../lib/dialects/mysql-constructor_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
38
+ class="thickbox" title="lib/dialects/mysql-constructor.rb">lib/dialects/mysql-constructor.rb</a></li>
39
+
40
+ </ul>
41
+ </div>
42
+ </div>
43
+
44
+
45
+ </div>
46
+
47
+ <div id="class-metadata">
48
+
49
+ <!-- Parent Class -->
50
+ <div id="parent-class-section" class="section">
51
+ <h3 class="section-header">Parent</h3>
52
+
53
+ <p class="link"><a href="BasicInsert.html">SQLConstructor::BasicInsert</a></p>
54
+
55
+ </div>
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+ <!-- Method Quickref -->
64
+ <div id="method-list-section" class="section">
65
+ <h3 class="section-header">Methods</h3>
66
+ <ul class="link-list">
67
+
68
+ <li><a href="#method-c-new">::new</a></li>
69
+
70
+ </ul>
71
+ </div>
72
+
73
+
74
+
75
+ </div>
76
+
77
+ <div id="project-metadata">
78
+
79
+
80
+ <div id="fileindex-section" class="section project-section">
81
+ <h3 class="section-header">Files</h3>
82
+ <ul>
83
+
84
+ <li class="file"><a href="../Rakefile.html">Rakefile</a></li>
85
+
86
+ </ul>
87
+ </div>
88
+
89
+
90
+ <div id="classindex-section" class="section project-section">
91
+ <h3 class="section-header">Class/Module Index
92
+ <span class="search-toggle"><img src="../images/find.png"
93
+ height="16" width="16" alt="[+]"
94
+ title="show/hide quicksearch" /></span></h3>
95
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
96
+ <fieldset>
97
+ <legend>Quicksearch</legend>
98
+ <input type="text" name="quicksearch" value=""
99
+ class="quicksearch-field" />
100
+ </fieldset>
101
+ </form>
102
+
103
+ <ul class="link-list">
104
+
105
+ <li><a href="../SQLConstructor.html">SQLConstructor</a></li>
106
+
107
+ <li><a href="../SQLConstructor/BasicDelete.html">SQLConstructor::BasicDelete</a></li>
108
+
109
+ <li><a href="../SQLConstructor/BasicDelete_mysql.html">SQLConstructor::BasicDelete_mysql</a></li>
110
+
111
+ <li><a href="../SQLConstructor/BasicInsert.html">SQLConstructor::BasicInsert</a></li>
112
+
113
+ <li><a href="../SQLConstructor/BasicInsert_mysql.html">SQLConstructor::BasicInsert_mysql</a></li>
114
+
115
+ <li><a href="../SQLConstructor/BasicJoin.html">SQLConstructor::BasicJoin</a></li>
116
+
117
+ <li><a href="../SQLConstructor/BasicJoin_mysql.html">SQLConstructor::BasicJoin_mysql</a></li>
118
+
119
+ <li><a href="../SQLConstructor/BasicSelect.html">SQLConstructor::BasicSelect</a></li>
120
+
121
+ <li><a href="../SQLConstructor/BasicSelect_example.html">SQLConstructor::BasicSelect_example</a></li>
122
+
123
+ <li><a href="../SQLConstructor/BasicSelect_mysql.html">SQLConstructor::BasicSelect_mysql</a></li>
124
+
125
+ <li><a href="../SQLConstructor/BasicUnion.html">SQLConstructor::BasicUnion</a></li>
126
+
127
+ <li><a href="../SQLConstructor/BasicUpdate.html">SQLConstructor::BasicUpdate</a></li>
128
+
129
+ <li><a href="../SQLConstructor/BasicUpdate_mysql.html">SQLConstructor::BasicUpdate_mysql</a></li>
130
+
131
+ <li><a href="../SQLConstructor/GenericQuery.html">SQLConstructor::GenericQuery</a></li>
132
+
133
+ <li><a href="../SQLConstructor/QAttr.html">SQLConstructor::QAttr</a></li>
134
+
135
+ <li><a href="../SQLExporter.html">SQLExporter</a></li>
136
+
137
+ <li><a href="../SQLExporter/Exporter_generic.html">SQLExporter::Exporter_generic</a></li>
138
+
139
+ <li><a href="../SQLExporter/Exporter_mysql.html">SQLExporter::Exporter_mysql</a></li>
140
+
141
+ <li><a href="../SQLConditional.html">SQLConditional</a></li>
142
+
143
+ <li><a href="../SQLConditional/BasicCond.html">SQLConditional::BasicCond</a></li>
144
+
145
+ <li><a href="../Object.html">Object</a></li>
146
+
147
+ <li><a href="../SQLAliasedList.html">SQLAliasedList</a></li>
148
+
149
+ <li><a href="../SQLColumn.html">SQLColumn</a></li>
150
+
151
+ <li><a href="../SQLCondList.html">SQLCondList</a></li>
152
+
153
+ <li><a href="../SQLConstructorTest.html">SQLConstructorTest</a></li>
154
+
155
+ <li><a href="../SQLObject.html">SQLObject</a></li>
156
+
157
+ <li><a href="../SQLValList.html">SQLValList</a></li>
158
+
159
+ <li><a href="../SQLValue.html">SQLValue</a></li>
160
+
161
+ </ul>
162
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
163
+ </div>
164
+
165
+
166
+ </div>
167
+ </div>
168
+
169
+ <div id="documentation">
170
+ <h1 class="class">SQLConstructor::BasicInsert_mysql</h1>
171
+
172
+ <div id="description" class="description">
173
+
174
+ <p>MySQL dialect descendant of <a href="BasicInsert.html">BasicInsert</a>
175
+ class</p>
176
+
177
+ </div><!-- description -->
178
+
179
+
180
+
181
+
182
+ <div id="5Buntitled-5D" class="documentation-section">
183
+
184
+
185
+
186
+
187
+
188
+ <!-- Constants -->
189
+ <div id="constants-list" class="section">
190
+ <h3 class="section-header">Constants</h3>
191
+ <dl>
192
+
193
+ <dt><a name="METHODS">METHODS</a></dt>
194
+
195
+ <dd class="description"></dd>
196
+
197
+
198
+ </dl>
199
+ </div>
200
+
201
+
202
+
203
+ <!-- Attributes -->
204
+ <div id="attribute-method-details" class="method-section section">
205
+ <h3 class="section-header">Attributes</h3>
206
+
207
+
208
+ <div id="ins_ignore-attribute-method" class="method-detail">
209
+ <a name="ins_ignore"></a>
210
+
211
+ <div class="method-heading attribute-method-heading">
212
+ <span class="method-name">ins_ignore</span><span
213
+ class="attribute-access-type">[R]</span>
214
+ </div>
215
+
216
+ <div class="method-description">
217
+
218
+
219
+
220
+ </div>
221
+ </div>
222
+
223
+ <div id="ins_on_duplicate_key_update-attribute-method" class="method-detail">
224
+ <a name="ins_on_duplicate_key_update"></a>
225
+
226
+ <div class="method-heading attribute-method-heading">
227
+ <span class="method-name">ins_on_duplicate_key_update</span><span
228
+ class="attribute-access-type">[R]</span>
229
+ </div>
230
+
231
+ <div class="method-description">
232
+
233
+
234
+
235
+ </div>
236
+ </div>
237
+
238
+ <div id="ins_priority-attribute-method" class="method-detail">
239
+ <a name="ins_priority"></a>
240
+
241
+ <div class="method-heading attribute-method-heading">
242
+ <span class="method-name">ins_priority</span><span
243
+ class="attribute-access-type">[R]</span>
244
+ </div>
245
+
246
+ <div class="method-description">
247
+
248
+
249
+
250
+ </div>
251
+ </div>
252
+
253
+ <div id="ins_quick-attribute-method" class="method-detail">
254
+ <a name="ins_quick"></a>
255
+
256
+ <div class="method-heading attribute-method-heading">
257
+ <span class="method-name">ins_quick</span><span
258
+ class="attribute-access-type">[R]</span>
259
+ </div>
260
+
261
+ <div class="method-description">
262
+
263
+
264
+
265
+ </div>
266
+ </div>
267
+
268
+ </div><!-- attribute-method-details -->
269
+
270
+
271
+ <!-- Methods -->
272
+
273
+ <div id="public-class-method-details" class="method-section section">
274
+ <h3 class="section-header">Public Class Methods</h3>
275
+
276
+
277
+ <div id="new-method" class="method-detail ">
278
+ <a name="method-c-new"></a>
279
+
280
+
281
+ <div class="method-heading">
282
+ <span class="method-name">new</span><span
283
+ class="method-args">( _caller )</span>
284
+ <span class="method-click-advice">click to toggle source</span>
285
+ </div>
286
+
287
+
288
+ <div class="method-description">
289
+
290
+ <p>Class constructor. _caller - the caller object</p>
291
+
292
+
293
+
294
+ <div class="method-source-code" id="new-source">
295
+ <pre>
296
+ <span class="ruby-comment"># File lib/dialects/mysql-constructor.rb, line 144</span>
297
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span> ( <span class="ruby-identifier">_caller</span> )
298
+ <span class="ruby-keyword">super</span>
299
+ <span class="ruby-keyword">end</span></pre>
300
+ </div><!-- new-source -->
301
+
302
+ </div>
303
+
304
+
305
+
306
+
307
+ </div><!-- new-method -->
308
+
309
+
310
+ </div><!-- public-class-method-details -->
311
+
312
+ </div><!-- 5Buntitled-5D -->
313
+
314
+
315
+ </div><!-- documentation -->
316
+
317
+ <div id="validator-badges">
318
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
319
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
320
+ Rdoc Generator</a> 2</small>.</p>
321
+ </div>
322
+
323
+ </body>
324
+ </html>
325
+