out.html
21.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
<p><a name="DAOFactory" /></p>
<h3>DAOFactory</h3>
<p>A DAOFactory represents a table in the database. Sometimes you might also see it refererred to as model, or simply as factory. This class should <em>not</em> be instantiated directly, It is created using <code>sequelize.define</code>, and already created models can be loaded using <code>sequelize.import</code></p>
<h3>Mixes:</h3>
<ul>
<li><p><a href="https://github.com/sequelize/sequelize/wiki/API-Reference-{Hooks}">Hooks</a></p></li>
<li><p><a href="https://github.com/sequelize/sequelize/wiki/API-Reference-{Assocations}">Assocations</a></p></li>
<li><p><a href="http://nodejs.org/api/events.html#events_class_events_eventemitter"><a href='http://nodejs.org/api/events.html#events_class_events_eventemitter'>http://nodejs.org/api/events.html#events_class_events_eventemitter</a></a></p></li>
</ul>
<h3>Members:</h3>
<ul>
<li><a href="#attributes">attributes</a></li>
<li><a href="#sequelize">sequelize</a></li>
<li><a href="#QueryInterface">QueryInterface</a></li>
<li><a href="#QueryGenerator">QueryGenerator</a></li>
<li><a href="#sync">sync()</a></li>
<li><a href="#drop">drop([options])</a></li>
<li><a href="#scope">scope(option*)</a></li>
<li><a href="#findAll">findAll([options], [queryOptions])</a></li>
<li><a href="#find">find([options], [queryOptions])</a></li>
<li><a href="#aggregate">aggregate(field, aggregateFunction, [options])</a></li>
<li><a href="#findAndCountAll">findAndCountAll([findOptions], [queryOptions])</a></li>
<li><a href="#max">max(field, options)</a></li>
<li><a href="#min">min(field, options)</a></li>
<li><a href="#sum">sum(field, options)</a></li>
<li><a href="#build">build(values, [options])</a></li>
<li><a href="#create">create(values, [options])</a></li>
<li><a href="#findOrInitialize">findOrInitialize(where, [defaults], [options])</a></li>
<li><a href="#findOrCreate">findOrCreate(where, [defaults], [options])</a></li>
<li><a href="#bulkCreate">bulkCreate(records, [options])</a></li>
<li><a href="#destroy">destroy([where], [options])</a></li>
<li><a href="#update">update(attrValueHash, where, options)</a></li>
<li><a href="#describe">describe()</a></li>
</ul>
<hr />
<p><a name="attributes" /></p>
<h3>attributes</h3>
<p>Return a hash of the attributes of the table. Keys are attributes, are values are the SQL representation of their type</p>
<hr />
<p><a name="sequelize" /></p>
<h3>sequelize</h3>
<p>A reference to the sequelize instance</p>
<hr />
<p><a name="QueryInterface" /></p>
<h3>QueryInterface</h3>
<p>A reference to the query interface</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-QueryInterface">QueryInterface</a></p>
<hr />
<p><a name="QueryGenerator" /></p>
<h3>QueryGenerator</h3>
<p>A reference to the query generator</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-QueryGenerator">QueryGenerator</a></p>
<hr />
<p><a name="sync" /></p>
<h3>sync()</h3>
<p>Sync this DAOFactory to the DB, that is create the table.</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-Sequelize#sync">Sequelize#sync for options</a></p>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> </li>
</ul>
<hr />
<p><a name="drop" /></p>
<h3>drop([options])</h3>
<p>Drop the table represented by this Model</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>[options]</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options.cascade=false]</td>
<td>Boolean</td>
<td>Also drop all objects depending on this table, such as views. Only works in postgres</td>
</tr>
</table>
<hr />
<p><a name="scope" /></p>
<h3>scope(option*)</h3>
<p>Apply a scope created in <code>define</code> to the model. First let's look at how to create scopes:</p>
<div class="highlight"><pre lang="js">var Model = sequelize.define('model', {
attributes
}, {
defaultScope: {
where: {
username: 'dan'
},
limit: 12
},
scopes: {
isALie: {
where: {
stuff: 'cake'
}
},
complexFunction: function(email, accessLevel) {
return {
where: ['email like ? AND access_level >= ?', email + '%', accessLevel]
}
},
}
})
</pre></div>
<p>Now, since you defined a default scope, every time you do Model.find, the default scope is appended to your query. Here's a couple of examples:</p>
<div class="highlight"><pre lang="js">Model.findAll() // WHERE username = 'dan'
Model.findAll({ where: { age: { gt: 12 } } }) // WHERE age > 12 AND username = 'dan'
</pre></div>
<p>To invoke scope functions you can do:</p>
<div class="highlight"><pre lang="js">Model.scope({ method: ['complexFunction' '<a href='mailto:dan@sequelize.com'>dan@sequelize.com</a>', 42]})
// WHERE email like '<a href='mailto:dan@sequelize.com'>dan@sequelize.com</a>%' AND access_level >= 42
</pre></div>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>option*</td>
<td>Array|Object|String|null</td>
<td>The scope(s) to apply. Scopes can either be passed as consecutive arguments, or as an array of arguments. To apply simple scopes, pass them as strings. For scope function, pass an object, with a `method` property. The value can either be a string, if the method does not take any arguments, or an array, where the first element is the name of the method, and consecutive elements are arguments to that method. Pass null to remove all scopes, including the default . </td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>DAOFactory</strong> A reference to the model, with the scope(s) applied. Calling scope again on the returned model will clear the previous scope.</li>
</ul>
<hr />
<p><a name="findAll" /></p>
<h3>findAll([options], [queryOptions])</h3>
<p>Search for multiple instances</p>
<p><strong>Simple search using AND and =</strong></p>
<div class="highlight"><pre lang="js">Model.find({
where: {
attr1: 42,
attr2: 'cake'
}
})
</pre></div>
<div class="highlight"><pre lang="sql">WHERE attr1 = 42 AND attr2 = 'cake'
</pre></div>
<p><strong>Using greater than, less than etc._</strong></p>
<div class="highlight"><pre lang="js">
Model.find({
where: {
attr1: {
gt: 50
},
attr2: {
lte: 45
},
attr3: {
in: [1,2,3]
},
attr4: {
ne: 5
}
}
})
</pre></div>
<div class="highlight"><pre lang="sql">WHERE attr1 > 50 AND attr2 <= 45 AND attr3 IN (1,2,3) AND attr4 != 5
</pre></div>
<p>Possible options are: <code>gt, gte, lt, lte, ne, between/.., nbetween/notbetween/!.., in, not, like, nlike/notlike</code> </p>
<p><strong>Queries using OR</strong></p>
<div class="highlight"><pre lang="js">Model.find({
where: Sequelize.and(
{ name: 'a project' },
Sequelize.or(
{ id: [1,2,3] },
{ id: { gt: 10 } }
)
)
})
</pre></div>
<div class="highlight"><pre lang="sql">WHERE name = 'a project' AND (id` IN (1,2,3) OR id > 10)
</pre></div>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-Sequelize#query">Sequelize#query</a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>[options]</td>
<td>Object</td>
<td>A hash of options to describe the scope of the search</td>
</tr>
<tr>
<td>[options.where]</td>
<td>Object</td>
<td>A hash of attributes to describe your search. See above for examples.</td>
</tr>
<tr>
<td>[options.attributes]</td>
<td>Array<String></td>
<td>A list of the attributes that you want to select</td>
</tr>
<tr>
<td>[options.include]</td>
<td>Array<Object|DAOFactory></td>
<td>A list of associations to eagerly load. Supported is either { include: [ DaoFactory1, DaoFactory2, ...] } or { include: [ { model: DaoFactory1, as: 'Alias' } ] }. When using the object form, you can also specify `attributes`, `where` to limit the relations and their columns, and `include` to load further nested relations</td>
</tr>
<tr>
<td>[options.order]</td>
<td>String|Array|Sequelize.fn</td>
<td>Specifies an ordering. If a string is provided, it will be esacped. Using an array, you can provide several columns / functions to order by. Each element can be further wrapped in a two-element array. The first element is the column / function to order by, the second is the direction. For example: `order: [['name', 'DESC']]`. In this way the column will be escaped, but the direction will not.</td>
</tr>
<tr>
<td>[options.limit]</td>
<td>Number</td>
<td></td>
</tr>
<tr>
<td>[options.offset]</td>
<td>Number</td>
<td></td>
</tr>
<tr>
<td>[queryOptions]</td>
<td>Object</td>
<td>set the query options, e.g. raw, specifying that you want raw data instead of built DAOs. See sequelize.query for options</td>
</tr>
<tr>
<td>[queryOptions.transaction]</td>
<td>Transaction</td>
<td></td>
</tr>
<tr>
<td>[queryOptions.raw]</td>
<td>Boolean</td>
<td>Returns the results as raw JS objects instead of DAO instances</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, an array of DAOs will be returned to the success listener</li>
</ul>
<hr />
<p><a name="find" /></p>
<h3>find([options], [queryOptions])</h3>
<p>Search for an instance.</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAOFactory#findAll">DAOFactory#findAll for an explanation of options and queryOptions</a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>[options]</td>
<td>Object|Number</td>
<td>A hash of options to describe the scope of the search, or a number to search by id.</td>
</tr>
<tr>
<td>[queryOptions]</td>
<td>Object</td>
<td></td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, a DAO will be returned to the success listener</li>
</ul>
<hr />
<p><a name="aggregate" /></p>
<h3>aggregate(field, aggregateFunction, [options])</h3>
<p>Run an aggregation method on the specified field</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>field</td>
<td>String</td>
<td>The field to aggregate over. Can be a field name or *</td>
</tr>
<tr>
<td>aggregateFunction</td>
<td>String</td>
<td>The function to use for aggregation, e.g. sum, max etc.</td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td>Query options. See sequelize.query for full options</td>
</tr>
<tr>
<td>[options.dataType]</td>
<td>DataType|String</td>
<td>The type of the result. If field is a field in the DAO, the default will be the type of that field, otherwise defaults to float.</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, the result of the aggregation function will be returned to the success listener</li>
</ul>
<hr />
<p><a name="findAndCountAll" /></p>
<h3>findAndCountAll([findOptions], [queryOptions])</h3>
<p>Find all the rows matching your query, within a specified offset / limit, and get the total number of rows matching your query. This is very usefull for paging</p>
<div class="highlight"><pre lang="js">Model.findAndCountAll({
where: ...,
limit: 12,
offset: 12
}).success(function (result) {
// result.rows will contain rows 13 through 24, while result.count will return the total number of rows that matched your query
})
</pre></div>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAOFactory#findAll">DAOFactory#findAll for a specification of find and query options </a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>[findOptions]</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[queryOptions]</td>
<td>Object</td>
<td></td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, an object containing rows and count will be returned</li>
</ul>
<hr />
<p><a name="max" /></p>
<h3>max(field, options)</h3>
<p>Find the maximum value of field</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAOFactory#aggregate">DAOFactory#aggregate for options</a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>field</td>
<td>String</td>
<td></td>
</tr>
<tr>
<td>options</td>
<td>Object</td>
<td></td>
</tr>
</table>
<hr />
<p><a name="min" /></p>
<h3>min(field, options)</h3>
<p>Find the minimum value of field</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAOFactory#aggregate">DAOFactory#aggregate for options</a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>field</td>
<td>String</td>
<td></td>
</tr>
<tr>
<td>options</td>
<td>Object</td>
<td></td>
</tr>
</table>
<hr />
<p><a name="sum" /></p>
<h3>sum(field, options)</h3>
<p>Find the sun of field</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAOFactory#aggregate">DAOFactory#aggregate for options</a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>field</td>
<td>String</td>
<td></td>
</tr>
<tr>
<td>options</td>
<td>Object</td>
<td></td>
</tr>
</table>
<hr />
<p><a name="build" /></p>
<h3>build(values, [options])</h3>
<p>Builds a new model instance. Values is an object of key value pairs, must be defined but can be empty.</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>values</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options.raw=false]</td>
<td>Boolean</td>
<td>If set to true, values will ignore field and virtual setters.</td>
</tr>
<tr>
<td>[options.isNewRecord=true]</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>[options.isDirty=true]</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>[options.include]</td>
<td>Array</td>
<td>an array of include options - Used to build prefetched/included model instances</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>DAO</strong> </li>
</ul>
<hr />
<p><a name="create" /></p>
<h3>create(values, [options])</h3>
<p>Builds a new model instance and calls save on it.</p>
<p>See:<br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAO#build">DAO#build</a><br />* <a href="https://github.com/sequelize/sequelize/wiki/API-Reference-DAO#save">DAO#save</a></p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>values</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options.raw=false]</td>
<td>Boolean</td>
<td>If set to true, values will ignore field and virtual setters.</td>
</tr>
<tr>
<td>[options.isNewRecord=true]</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>[options.isDirty=true]</td>
<td>Boolean</td>
<td></td>
</tr>
<tr>
<td>[options.fields]</td>
<td>Array</td>
<td>If set, only columns matching those in fields will be saved</td>
</tr>
<tr>
<td>[options.include]</td>
<td>Array</td>
<td>an array of include options - Used to build prefetched/included model instances</td>
</tr>
<tr>
<td>[options.transaction]</td>
<td>Transaction</td>
<td></td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, the DAO will be return to the success listener</li>
</ul>
<hr />
<p><a name="findOrInitialize" /></p>
<h3>findOrInitialize</h3>
<p>Find a row that matches the query, or build (but don't save) the row if none is found</p>
<p><strong>Deprecated</strong></p>
<p>The syntax is due for change, in order to make <code>where</code> more consistent with the rest of the API</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>where</td>
<td>Object</td>
<td>A hash of search attributes. Note that this method differs from finders, in that the syntax is { attr1: 42 } and NOT { where: { attr1: 42}}. This is subject to change in 2.0</td>
</tr>
<tr>
<td>[defaults]</td>
<td>Object</td>
<td>Default values to use if building a new instance</td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td>Options passed to the find call</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, the DAO will be return to the success listener</li>
</ul>
<hr />
<p><a name="findOrCreate" /></p>
<h3>findOrCreate(where, [defaults], [options])</h3>
<p>Find a row that matches the query, or build and save the row if none is found</p>
<p><strong>Deprecated</strong></p>
<p>The syntax is due for change, in order to make <code>where</code> more consistent with the rest of the API</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>where</td>
<td>Object</td>
<td>A hash of search attributes. Note that this method differs from finders, in that the syntax is { attr1: 42 } and NOT { where: { attr1: 42}}. This is subject to change in 2.0</td>
</tr>
<tr>
<td>[defaults]</td>
<td>Object</td>
<td>Default values to use if creating a new instance</td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td>Options passed to the find and create calls</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, the DAO will be return to the success listener</li>
</ul>
<hr />
<p><a name="bulkCreate" /></p>
<h3>bulkCreate(records, [options])</h3>
<p>Create and insert multiple instances in bulk</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>records</td>
<td>Array</td>
<td>List of objects (key/value pairs) to create instances from</td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options.fields]</td>
<td>Array</td>
<td>Fields to insert (defaults to all fields)</td>
</tr>
<tr>
<td>[options.validate=false]</td>
<td>Boolean</td>
<td>Should each row be subject to validation before it is inserted. The whole insert will fail if one row fails validation</td>
</tr>
<tr>
<td>[options.hooks=false]</td>
<td>Boolean</td>
<td>Run before / after bulkCreate hooks?</td>
</tr>
<tr>
<td>[options.ignoreDuplicates=false]</td>
<td>Boolean</td>
<td>Ignore duplicate values for primary keys? (not supported by postgres)</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. The success` handler is not passed any arguments. To obtain DAOs for the newly created values, you will need to query for them again. This is because MySQL and SQLite do not make it easy to obtain back automatically generated IDs and other default values in a way that can be mapped to multiple records</li>
</ul>
<hr />
<p><a name="destroy" /></p>
<h3>destroy([where], [options])</h3>
<p>Delete multiple instances</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>[where]</td>
<td>Object</td>
<td>Options to describe the scope of the search.</td>
</tr>
<tr>
<td>[options]</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options.hooks]</td>
<td>Boolean</td>
<td>If set to true, destroy will find all records within the where parameter and will execute before/afterDestroy hooks on each row</td>
</tr>
<tr>
<td>[options.limit]</td>
<td>Number</td>
<td>How many rows to delete</td>
</tr>
<tr>
<td>[options.truncate]</td>
<td>Boolean</td>
<td>If set to true, dialects that support it will use TRUNCATE instead of DELETE FROM. If a table is truncated the where and limit options are ignored</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>.</li>
</ul>
<hr />
<p><a name="update" /></p>
<h3>update(attrValueHash, where, options)</h3>
<p>Update multiple instances</p>
<h4>Params:</h4>
<table>
<thead>
<th>Name</th><th>Type</th><th>Description</th>
</thead>
<tr>
<td>attrValueHash</td>
<td>Object</td>
<td>A hash of fields to change and their new values</td>
</tr>
<tr>
<td>where</td>
<td>Object</td>
<td>Options to describe the scope of the search. Note that these options are not wrapped in a { where: ... } is in find / findAll calls etc. This is probably due to change in 2.0</td>
</tr>
<tr>
<td>options</td>
<td>Object</td>
<td></td>
</tr>
<tr>
<td>[options.validate=true]</td>
<td>Boolean</td>
<td>Should each row be subject to validation before it is inserted. The whole insert will fail if one row fails validation</td>
</tr>
<tr>
<td>[options.hooks=false]</td>
<td>Boolean</td>
<td>Run before / after bulkUpdate hooks?</td>
</tr>
</table>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> A promise which fires <code>success</code>, <code>error</code> and <code>sql</code>.</li>
</ul>
<hr />
<p><a name="describe" /></p>
<h3>describe()</h3>
<p>Run a describe query on the table</p>
<h4>Return:</h4>
<ul>
<li><strong>EventEmitter</strong> Fires <code>success</code>, <code>error</code> and <code>sql</code>. Upon success, a hash of attributes and their types will be returned</li>
</ul>
<hr />
<p><em>This document is automatically generated based on source code comments. Please do not edit it directly, as your changes will be ignored. Please write on <a href="irc://irc.freenode.net/#sequelizejs">IRC</a>, open an issue or a create a pull request if you feel something can be improved. For help on how to write source code documentation see <a href="http://usejsdoc.org">JSDoc</a> and <a href="https://github.com/cbou/markdox">markdox</a></em></p>
<p><em>This documentation was automagically created on Tue Mar 04 2014 21:54:16 GMT+0100 (CET)</em></p>