epugh-sequel 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. data/README.rdoc +652 -0
  2. data/VERSION.yml +4 -0
  3. data/bin/sequel +104 -0
  4. data/lib/sequel.rb +1 -0
  5. data/lib/sequel/adapters/ado.rb +85 -0
  6. data/lib/sequel/adapters/db2.rb +132 -0
  7. data/lib/sequel/adapters/dbi.rb +101 -0
  8. data/lib/sequel/adapters/do.rb +197 -0
  9. data/lib/sequel/adapters/do/mysql.rb +38 -0
  10. data/lib/sequel/adapters/do/postgres.rb +92 -0
  11. data/lib/sequel/adapters/do/sqlite.rb +31 -0
  12. data/lib/sequel/adapters/firebird.rb +307 -0
  13. data/lib/sequel/adapters/informix.rb +75 -0
  14. data/lib/sequel/adapters/jdbc.rb +485 -0
  15. data/lib/sequel/adapters/jdbc/h2.rb +62 -0
  16. data/lib/sequel/adapters/jdbc/mysql.rb +56 -0
  17. data/lib/sequel/adapters/jdbc/oracle.rb +23 -0
  18. data/lib/sequel/adapters/jdbc/postgresql.rb +101 -0
  19. data/lib/sequel/adapters/jdbc/sqlite.rb +43 -0
  20. data/lib/sequel/adapters/mysql.rb +370 -0
  21. data/lib/sequel/adapters/odbc.rb +184 -0
  22. data/lib/sequel/adapters/openbase.rb +57 -0
  23. data/lib/sequel/adapters/oracle.rb +140 -0
  24. data/lib/sequel/adapters/postgres.rb +453 -0
  25. data/lib/sequel/adapters/shared/mssql.rb +93 -0
  26. data/lib/sequel/adapters/shared/mysql.rb +341 -0
  27. data/lib/sequel/adapters/shared/oracle.rb +62 -0
  28. data/lib/sequel/adapters/shared/postgres.rb +743 -0
  29. data/lib/sequel/adapters/shared/progress.rb +34 -0
  30. data/lib/sequel/adapters/shared/sqlite.rb +263 -0
  31. data/lib/sequel/adapters/sqlite.rb +243 -0
  32. data/lib/sequel/adapters/utils/date_format.rb +21 -0
  33. data/lib/sequel/adapters/utils/stored_procedures.rb +75 -0
  34. data/lib/sequel/adapters/utils/unsupported.rb +62 -0
  35. data/lib/sequel/connection_pool.rb +258 -0
  36. data/lib/sequel/core.rb +204 -0
  37. data/lib/sequel/core_sql.rb +185 -0
  38. data/lib/sequel/database.rb +687 -0
  39. data/lib/sequel/database/schema_generator.rb +324 -0
  40. data/lib/sequel/database/schema_methods.rb +164 -0
  41. data/lib/sequel/database/schema_sql.rb +324 -0
  42. data/lib/sequel/dataset.rb +422 -0
  43. data/lib/sequel/dataset/convenience.rb +237 -0
  44. data/lib/sequel/dataset/prepared_statements.rb +220 -0
  45. data/lib/sequel/dataset/sql.rb +1105 -0
  46. data/lib/sequel/deprecated.rb +529 -0
  47. data/lib/sequel/exceptions.rb +44 -0
  48. data/lib/sequel/extensions/blank.rb +42 -0
  49. data/lib/sequel/extensions/inflector.rb +288 -0
  50. data/lib/sequel/extensions/pagination.rb +96 -0
  51. data/lib/sequel/extensions/pretty_table.rb +78 -0
  52. data/lib/sequel/extensions/query.rb +48 -0
  53. data/lib/sequel/extensions/string_date_time.rb +47 -0
  54. data/lib/sequel/metaprogramming.rb +44 -0
  55. data/lib/sequel/migration.rb +212 -0
  56. data/lib/sequel/model.rb +142 -0
  57. data/lib/sequel/model/association_reflection.rb +263 -0
  58. data/lib/sequel/model/associations.rb +1024 -0
  59. data/lib/sequel/model/base.rb +911 -0
  60. data/lib/sequel/model/deprecated.rb +188 -0
  61. data/lib/sequel/model/deprecated_hooks.rb +103 -0
  62. data/lib/sequel/model/deprecated_inflector.rb +335 -0
  63. data/lib/sequel/model/deprecated_validations.rb +384 -0
  64. data/lib/sequel/model/errors.rb +37 -0
  65. data/lib/sequel/model/exceptions.rb +7 -0
  66. data/lib/sequel/model/inflections.rb +230 -0
  67. data/lib/sequel/model/plugins.rb +74 -0
  68. data/lib/sequel/object_graph.rb +230 -0
  69. data/lib/sequel/plugins/caching.rb +122 -0
  70. data/lib/sequel/plugins/hook_class_methods.rb +122 -0
  71. data/lib/sequel/plugins/schema.rb +53 -0
  72. data/lib/sequel/plugins/single_table_inheritance.rb +63 -0
  73. data/lib/sequel/plugins/validation_class_methods.rb +373 -0
  74. data/lib/sequel/sql.rb +854 -0
  75. data/lib/sequel/version.rb +11 -0
  76. data/lib/sequel_core.rb +1 -0
  77. data/lib/sequel_model.rb +1 -0
  78. data/spec/adapters/ado_spec.rb +46 -0
  79. data/spec/adapters/firebird_spec.rb +376 -0
  80. data/spec/adapters/informix_spec.rb +96 -0
  81. data/spec/adapters/mysql_spec.rb +875 -0
  82. data/spec/adapters/oracle_spec.rb +272 -0
  83. data/spec/adapters/postgres_spec.rb +692 -0
  84. data/spec/adapters/spec_helper.rb +10 -0
  85. data/spec/adapters/sqlite_spec.rb +550 -0
  86. data/spec/core/connection_pool_spec.rb +526 -0
  87. data/spec/core/core_ext_spec.rb +156 -0
  88. data/spec/core/core_sql_spec.rb +528 -0
  89. data/spec/core/database_spec.rb +1214 -0
  90. data/spec/core/dataset_spec.rb +3513 -0
  91. data/spec/core/expression_filters_spec.rb +363 -0
  92. data/spec/core/migration_spec.rb +261 -0
  93. data/spec/core/object_graph_spec.rb +280 -0
  94. data/spec/core/pretty_table_spec.rb +58 -0
  95. data/spec/core/schema_generator_spec.rb +167 -0
  96. data/spec/core/schema_spec.rb +778 -0
  97. data/spec/core/spec_helper.rb +82 -0
  98. data/spec/core/version_spec.rb +7 -0
  99. data/spec/extensions/blank_spec.rb +67 -0
  100. data/spec/extensions/caching_spec.rb +201 -0
  101. data/spec/extensions/hook_class_methods_spec.rb +470 -0
  102. data/spec/extensions/inflector_spec.rb +122 -0
  103. data/spec/extensions/pagination_spec.rb +99 -0
  104. data/spec/extensions/pretty_table_spec.rb +91 -0
  105. data/spec/extensions/query_spec.rb +85 -0
  106. data/spec/extensions/schema_spec.rb +111 -0
  107. data/spec/extensions/single_table_inheritance_spec.rb +53 -0
  108. data/spec/extensions/spec_helper.rb +90 -0
  109. data/spec/extensions/string_date_time_spec.rb +93 -0
  110. data/spec/extensions/validation_class_methods_spec.rb +1054 -0
  111. data/spec/integration/dataset_test.rb +160 -0
  112. data/spec/integration/eager_loader_test.rb +683 -0
  113. data/spec/integration/prepared_statement_test.rb +130 -0
  114. data/spec/integration/schema_test.rb +183 -0
  115. data/spec/integration/spec_helper.rb +75 -0
  116. data/spec/integration/type_test.rb +96 -0
  117. data/spec/model/association_reflection_spec.rb +93 -0
  118. data/spec/model/associations_spec.rb +1780 -0
  119. data/spec/model/base_spec.rb +494 -0
  120. data/spec/model/caching_spec.rb +217 -0
  121. data/spec/model/dataset_methods_spec.rb +78 -0
  122. data/spec/model/eager_loading_spec.rb +1165 -0
  123. data/spec/model/hooks_spec.rb +472 -0
  124. data/spec/model/inflector_spec.rb +126 -0
  125. data/spec/model/model_spec.rb +588 -0
  126. data/spec/model/plugins_spec.rb +142 -0
  127. data/spec/model/record_spec.rb +1243 -0
  128. data/spec/model/schema_spec.rb +92 -0
  129. data/spec/model/spec_helper.rb +124 -0
  130. data/spec/model/validations_spec.rb +1080 -0
  131. data/spec/rcov.opts +6 -0
  132. data/spec/spec.opts +0 -0
  133. data/spec/spec_config.rb.example +10 -0
  134. metadata +202 -0
@@ -0,0 +1,652 @@
1
+ == Sequel: The Database Toolkit for Ruby
2
+
3
+ Sequel is a lightweight database access toolkit for Ruby.
4
+
5
+ * Sequel provides thread safety, connection pooling and a concise DSL
6
+ for constructing database queries and table schemas.
7
+ * Sequel also includes a lightweight but comprehensive ORM layer for
8
+ mapping records to Ruby objects and handling associated records.
9
+ * Sequel supports advanced database features such as prepared
10
+ statements, bound variables, stored procedures, master/slave
11
+ configurations, and database sharding.
12
+ * Sequel makes it easy to deal with multiple records without having
13
+ to break your teeth on SQL.
14
+ * Sequel currently has adapters for ADO, DataObjects, DB2, DBI,
15
+ Firebird, Informix, JDBC, MySQL, ODBC, OpenBase, Oracle, PostgreSQL
16
+ and SQLite3.
17
+
18
+ == Resources
19
+
20
+ * {Website}[http://sequel.rubyforge.org]
21
+ * {Source code}[http://github.com/jeremyevans/sequel]
22
+ * {Bug tracking}[http://code.google.com/p/ruby-sequel/issues/list]
23
+ * {Google group}[http://groups.google.com/group/sequel-talk]
24
+ * {RDoc}[http://sequel.rubyforge.org/rdoc]
25
+
26
+ To check out the source code:
27
+
28
+ git clone git://github.com/jeremyevans/sequel.git
29
+
30
+ === Contact
31
+
32
+ If you have any comments or suggestions please post to the Google group.
33
+
34
+ == Installation
35
+
36
+ sudo gem install sequel
37
+
38
+ == A Short Example
39
+
40
+ require 'rubygems'
41
+ require 'sequel'
42
+
43
+ DB = Sequel.sqlite # memory database
44
+
45
+ DB.create_table :items do
46
+ primary_key :id
47
+ String name
48
+ Float price
49
+ end
50
+
51
+ items = DB[:items] # Create a dataset
52
+
53
+ # Populate the table
54
+ items.insert(:name => 'abc', :price => rand * 100)
55
+ items.insert(name => 'def', :price => rand * 100)
56
+ items.insert(:name => 'ghi', :price => rand * 100)
57
+
58
+ # Print out the number of records
59
+ puts "Item count: #{items.count}"
60
+
61
+ # Print out the average price
62
+ puts "The average price is: #{items.avg(:price)}"
63
+
64
+ == The Sequel Console
65
+
66
+ Sequel includes an IRB console for quick access to databases. You can use it like this:
67
+
68
+ sequel sqlite://test.db # test.db in current directory
69
+
70
+ You get an IRB session with the database object stored in DB.
71
+
72
+ == An Introduction
73
+
74
+ Sequel is designed to take the hassle away from connecting to databases and manipulating them. Sequel deals with all the boring stuff like maintaining connections, formatting SQL correctly and fetching records so you can concentrate on your application.
75
+
76
+ Sequel uses the concept of datasets to retrieve data. A Dataset object encapsulates an SQL query and supports chainability, letting you fetch data using a convenient Ruby DSL that is both concise and flexible.
77
+
78
+ For example, the following one-liner returns the average GDP for the five biggest countries in the middle east region:
79
+
80
+ DB[:countries].filter(:region => 'Middle East').reverse_order(:area).limit(5).avg(:GDP)
81
+
82
+ Which is equivalent to:
83
+
84
+ SELECT avg(GDP) FROM countries WHERE region = 'Middle East' ORDER BY area DESC LIMIT 5
85
+
86
+ Since datasets retrieve records only when needed, they can be stored and later reused. Records are fetched as hashes (or custom model objects), and are accessed using an Enumerable interface:
87
+
88
+ middle_east = DB[:countries].filter(:region => 'Middle East')
89
+ middle_east.order(:name).each{|r| puts r[:name]}
90
+
91
+ Sequel also offers convenience methods for extracting data from Datasets, such as an extended map method:
92
+
93
+ middle_east.map(:name) #=> ['Egypt', 'Greece', 'Israel', ...]
94
+
95
+ Or getting results as a transposed hash, with one column as key and another as value:
96
+
97
+ middle_east.to_hash(:name, :area) #=> {'Israel' => 20000, 'Greece' => 120000, ...}
98
+
99
+ == Getting Started
100
+
101
+ === Connecting to a database
102
+
103
+ To connect to a database you simply provide Sequel with a URL:
104
+
105
+ require 'sequel'
106
+ DB = Sequel.connect('sqlite://blog.db')
107
+
108
+ The connection URL can also include such stuff as the user name and password:
109
+
110
+ DB = Sequel.connect('postgres://cico:12345@localhost:5432/mydb')
111
+
112
+ You can also specify optional parameters, such as the connection pool size, or loggers for logging SQL queries:
113
+
114
+ DB = Sequel.connect("postgres://postgres:postgres@localhost/my_db",
115
+ :max_connections => 10, :loggers => [Logger.new('log/db.log']))
116
+
117
+ You can specify a block to connect, which will disconnect from the database after it completes:
118
+
119
+ Sequel.connect('postgres://cico:12345@localhost:5432/mydb'){|db| db[:posts].delete}
120
+
121
+ === Arbitrary SQL queries
122
+
123
+ DB << "create table t (a text, b text)"
124
+ DB << "insert into t values ('a', 'b')"
125
+
126
+ You can also create datasets based on raw SQL:
127
+
128
+ dataset = DB['select id from items']
129
+ dataset.count # will return the number of records in the result set
130
+ dataset.map(:id) # will return an array containing all values of the id column in the result set
131
+
132
+ You can also fetch records with raw SQL through the dataset:
133
+
134
+ DB['select * from items'].each do |row|
135
+ p row
136
+ end
137
+
138
+ You can use placeholders in your SQL string as well:
139
+
140
+ DB['select * from items where name = ?', name].each do |row|
141
+ p row
142
+ end
143
+
144
+ === Getting Dataset Instances
145
+
146
+ Datasets are the primary way records are retrieved and manipulated. They are generally created via the Database#from or Database#[] methods:
147
+
148
+ posts = DB.from(:posts)
149
+ posts = DB[:posts] # same
150
+
151
+ Datasets will only fetch records when you tell them to. They can be manipulated to filter records, change ordering, join tables, etc..
152
+
153
+ === Retrieving Records
154
+
155
+ You can retrieve all records by using the all method:
156
+
157
+ posts.all
158
+
159
+ The all method returns an array of hashes, where each hash corresponds to a record.
160
+
161
+ You can also iterate through records one at a time:
162
+
163
+ posts.each{|row| p row}
164
+
165
+ Or perform more advanced stuff:
166
+
167
+ names_and_dates = posts.map{|r| [r[:name], r[:date]]}
168
+ old_posts, recent_posts = posts.partition{|r| r[:date] < Date.today - 7}
169
+
170
+ You can also retrieve the first record in a dataset:
171
+
172
+ posts.first
173
+
174
+ Or retrieve a single record with a specific value:
175
+
176
+ posts[:id => 1]
177
+
178
+ If the dataset is ordered, you can also ask for the last record:
179
+
180
+ posts.order(:stamp).last
181
+
182
+ === Filtering Records
183
+
184
+ An easy way to filter records is to provide a hash of values to match:
185
+
186
+ my_posts = posts.filter(:category => 'ruby', :author => 'david')
187
+
188
+ You can also specify ranges:
189
+
190
+ my_posts = posts.filter(:stamp => (Date.today - 14)..(Date.today - 7))
191
+
192
+ Or arrays of values:
193
+
194
+ my_posts = posts.filter(:category => ['ruby', 'postgres', 'linux'])
195
+
196
+ Sequel also accepts expressions:
197
+
198
+ my_posts = posts.filter{|o| o.stamp > Date.today << 1}
199
+
200
+ Some adapters will also let you specify Regexps:
201
+
202
+ my_posts = posts.filter(:category => /ruby/i)
203
+
204
+ You can also use an inverse filter:
205
+
206
+ my_posts = posts.exclude(:category => /ruby/i)
207
+
208
+ You can also specify a custom WHERE clause using a string:
209
+
210
+ posts.filter('stamp IS NOT NULL')
211
+
212
+ You can use parameters in your string, as well:
213
+
214
+ posts.filter('(stamp < ?) AND (author != ?)', Date.today - 3, author_name)
215
+ posts.filter{|o| (o.stamp < Date.today - 3) & ~{:author => author_name}} # same as above
216
+
217
+ Datasets can also be used as subqueries:
218
+
219
+ DB[:items].filter('price > ?', DB[:items].select{|o| o.avg(:price) + 100})
220
+
221
+ After filtering you can retrieve the matching records by using any of the retrieval methods:
222
+
223
+ my_posts.each{|row| p row}
224
+
225
+ See the doc/dataset_filtering.rdoc file for more details.
226
+
227
+ === Summarizing Records
228
+
229
+ Counting records is easy:
230
+ posts.filter(:category => /ruby/i).count
231
+
232
+ And you can also query maximum/minimum values:
233
+ max = DB[:history].max(:value)
234
+ min = DB[:history].min(:value)
235
+
236
+ Or calculate a sum or average:
237
+ sum = DB[:items].sum(:price)
238
+ avg = DB[:items].avg(:price)
239
+
240
+ === Ordering Records
241
+
242
+ Ordering datasets is simple:
243
+
244
+ posts.order(:stamp) # ORDER BY stamp
245
+ posts.order(:stamp, :name) # ORDER BY stamp, name
246
+
247
+ Chaining order doesn't work the same as filter:
248
+
249
+ posts.order(:stamp).order(:name) # ORDER BY name
250
+
251
+ The order_more method chains this way, though:
252
+
253
+ posts.order(:stamp).order_more(:name) # ORDER BY stamp, name
254
+
255
+ You can also specify descending order:
256
+
257
+ posts.order(:stamp.desc) # ORDER BY stamp DESC
258
+
259
+ === Selecting Columns
260
+
261
+ Selecting specific columns to be returned is also simple:
262
+
263
+ posts.select(:stamp) # SELECT stamp FROM posts
264
+ posts.select(:stamp, :name) # SELECT stamp, name FROM posts
265
+
266
+ Chaining select works like order, not filter:
267
+
268
+ posts.select(:stamp).select(:name) # SELECT name FROM posts
269
+
270
+ As you might expect, there is an order_more equivalent for select:
271
+
272
+ posts.select(:stamp).select_more(:name) # SELECT stamp, name FROM posts
273
+
274
+ === Deleting Records
275
+
276
+ Deleting records from the table is done with delete:
277
+
278
+ posts.filter('stamp < ?', Date.today - 3).delete
279
+
280
+ Be very careful when deleting, as delete affects all rows in the dataset.
281
+ Filter first, delete second, unless you want to empty the table.
282
+
283
+ === Inserting Records
284
+
285
+ Inserting records into the table is done with insert:
286
+
287
+ posts.insert(:category => 'ruby', :author => 'david')
288
+
289
+ === Updating Records
290
+
291
+ Updating records in the table is done with update:
292
+
293
+ posts.filter('stamp < ?', Date.today - 7).update(:state => 'archived')
294
+
295
+ You can reference table columns when choosing what values to set:
296
+
297
+ posts.filter{|o| o.stamp < Date.today - 7}.update(:backup_number => :backup_number + 1)
298
+
299
+ As with delete, this affects all rows in the dataset, so filter first,
300
+ update second, unless you want to update all rows.
301
+
302
+ === Joining Tables
303
+
304
+ Sequel makes it easy to join tables:
305
+
306
+ order_items = DB[:items].join(:order_items, :item_id => :id).
307
+ filter(:order_items__order_id => 1234)
308
+
309
+ This is equivalent to the SQL:
310
+
311
+ SELECT * FROM items INNER JOIN order_items
312
+ ON order_items.item_id = items.id
313
+ WHERE order_items.order_id = 1234
314
+
315
+ You can then do anything you like with the dataset:
316
+
317
+ order_total = order_items.sum(:price)
318
+
319
+ Which is equivalent to the SQL:
320
+
321
+ SELECT sum(price) FROM items INNER JOIN order_items
322
+ ON order_items.item_id = items.id
323
+ WHERE order_items.order_id = 1234
324
+
325
+ === Graphing Datasets
326
+
327
+ When retrieving records from joined datasets, you get the results in a single hash, which is subject to clobbering if you have columns with the same name in multiple tables:
328
+
329
+ DB[:items].join(:order_items, :item_id => :id).first
330
+ => {:id=>order_items.id), :item_id=>order_items.item_id}
331
+
332
+ Using graph, you can split the result hashes into subhashes, one per join:
333
+
334
+ DB[:items].graph(:order_items, :item_id => :id).first
335
+ => {:items=>{:id=>items.id}, :order_items=>{:id=>order_items.id, :item_id=>order_items.item_id}}
336
+
337
+ == An aside: column references in Sequel
338
+
339
+ Sequel expects column names to be specified using symbols. In addition, returned hashes always use symbols as their keys. This allows you to freely mix literal values and column references. For example, the two following lines produce equivalent SQL:
340
+
341
+ items.filter(:x => 1) #=> "SELECT * FROM items WHERE (x = 1)"
342
+ items.filter(1 => :x) #=> "SELECT * FROM items WHERE (1 = x)"
343
+
344
+ Ruby strings are generally treated as SQL strings:
345
+
346
+ items.filter(:x => 'x') #=> "SELECT * FROM items WHERE (x = 'x')"
347
+
348
+ === Qualifying column names
349
+
350
+ Column references can be qualified by using the double underscore special notation :table__column:
351
+
352
+ items.literal(:items__price) #=> "items.price"
353
+
354
+ === Column aliases
355
+
356
+ You can also alias columns by using the triple undersecore special notation :column___alias or :table__column___alias:
357
+
358
+ items.literal(:price___p) #=> "price AS p"
359
+ items.literal(:items__price___p) #=> "items.price AS p"
360
+
361
+ Another way to alias columns is to use the #as method:
362
+
363
+ items.literal(:price.as(:p)) #=> "price AS p"
364
+
365
+ == Sequel Models
366
+
367
+ A model class wraps a dataset, and an instance of that class wraps a single record in the dataset.
368
+
369
+ Model classes are defined as regular Ruby classes:
370
+
371
+ DB = Sequel.connect('sqlite://blog.db')
372
+ class Post < Sequel::Model
373
+ end
374
+
375
+ Just like in DataMapper or ActiveRecord, Sequel model classes assume that the table name is a plural of the class name:
376
+
377
+ Post.table_name #=> :posts
378
+
379
+ You can, however, explicitly set the table name or even the dataset used:
380
+
381
+ class Post < Sequel::Model(:my_posts)
382
+ end
383
+ # or:
384
+ Post.set_dataset :my_posts
385
+
386
+ If you use a symbol, it assumes you are referring to the table with the same name. You can also give it a dataset:
387
+
388
+ Post.set_dataset DB[:my_posts].filter(:category => 'ruby')
389
+ Post.set_dataset DB[:my_posts].select(:id, :name).order(:date)
390
+
391
+ === Model instances
392
+
393
+ Model instance are identified by a primary key. By default, Sequel assumes the primary key column to be :id, unless it can get the primary key information from the database. The Model.[] method can be used to fetch records by their primary key:
394
+
395
+ post = Post[123]
396
+
397
+ The Model#pk method is used to retrieve the record's primary key value:
398
+
399
+ post.pk #=> 123
400
+
401
+ Sequel models allow you to use any column as a primary key, and even composite keys made from multiple columns:
402
+
403
+ class Post < Sequel::Model
404
+ set_primary_key [:category, :title]
405
+ end
406
+
407
+ post = Post['ruby', 'hello world']
408
+ post.pk #=> ['ruby', 'hello world']
409
+
410
+ You can also define a model class that does not have a primary key, but then you lose the ability to update records.
411
+
412
+ A model instance can also be fetched by specifying a condition:
413
+
414
+ post = Post[:title => 'hello world']
415
+ post = Post.find{|o| o.num_comments < 10}
416
+
417
+ === Iterating over records
418
+
419
+ A model class lets you iterate over subsets of records by proxying many methods to the underlying dataset. This means that you can use most of the Dataset API to create customized queries that return model instances, e.g.:
420
+
421
+ Post.filter(:category => 'ruby').each{|post| p post}
422
+
423
+ You can also manipulate the records in the dataset:
424
+
425
+ Post.filter{|o| o.num_comments < 7}.delete
426
+ Post.filter(:title.like(/ruby/)).update(:category => 'ruby')
427
+
428
+ === Accessing record values
429
+
430
+ A model instances stores its values as a hash:
431
+
432
+ post.values #=> {:id => 123, :category => 'ruby', :title => 'hello world'}
433
+
434
+ You can read the record values as object attributes (assuming the attribute names are valid columns in the model's dataset):
435
+
436
+ post.id #=> 123
437
+ post.title #=> 'hello world'
438
+
439
+ You can also change record values:
440
+
441
+ post.title = 'hey there'
442
+ post.save
443
+
444
+ Another way to change values by using the #update method:
445
+
446
+ post.update(:title => 'hey there')
447
+
448
+ === Creating new records
449
+
450
+ New records can be created by calling Model.create:
451
+
452
+ post = Post.create(:title => 'hello world')
453
+
454
+ Another way is to construct a new instance and save it:
455
+
456
+ post = Post.new
457
+ post.title = 'hello world'
458
+ post.save
459
+
460
+ You can also supply a block to Model.new and Model.create:
461
+
462
+ post = Post.create{|p| p.title = 'hello world'}
463
+
464
+ post = Post.new do |p|
465
+ p.title = 'hello world'
466
+ p.save
467
+ end
468
+
469
+ === Hooks
470
+
471
+ You can execute custom code when creating, updating, or deleting records by defining hook methods. The before_create and after_create hook methods wrap record creation. The before_update and after_update hook methods wrap record updating. The before_save and after_save hook methods wrap record creation and updating. The before_destroy and after_destroy hook methods wrap destruction. The before_validation and after_validation hook methods wrap validation. Example:
472
+
473
+ class Post < Sequel::Model
474
+ def after_create
475
+ author.increase_post_count
476
+ end
477
+
478
+ def after_destroy
479
+ author.decrease_post_count
480
+ end
481
+ end
482
+
483
+ For the example above, you should probably use a database trigger if you can. Hooks can be used for data integrity, but they will only enforce that integrity when you are using the model. If you plan on allowing any other access to the database, it's best to use database triggers for data integrity.
484
+
485
+ === Deleting records
486
+
487
+ You can delete individual records by calling #delete or #destroy. The only difference between the two methods is that #destroy invokes before_destroy and after_destroy hook methods, while #delete does not:
488
+
489
+ post.delete #=> bypasses hooks
490
+ post.destroy #=> runs hooks
491
+
492
+ Records can also be deleted en-masse by invoking Model.delete and Model.destroy. As stated above, you can specify filters for the deleted records:
493
+
494
+ Post.filter(:category => 32).delete #=> bypasses hooks
495
+ Post.filter(:category => 32).destroy #=> runs hooks
496
+
497
+ Please note that if Model.destroy is called, each record is deleted
498
+ separately, but Model.delete deletes all relevant records with a single
499
+ SQL statement.
500
+
501
+ === Associations
502
+
503
+ Associations are used in order to specify relationships between model classes that reflect relations between tables in the database using foreign keys.
504
+
505
+ class Post < Sequel::Model
506
+ many_to_one :author
507
+ one_to_many :comments
508
+ many_to_many :tags
509
+ end
510
+
511
+ many_to_one creates a getter and setter for each model object:
512
+
513
+ class Post < Sequel::Model
514
+ many_to_one :author
515
+ end
516
+
517
+ post = Post.create(:name => 'hi!')
518
+ post.author = Author[:name => 'Sharon']
519
+ post.author
520
+
521
+ one_to_many and many_to_many create a getter method, a method for adding an object to the association, a method for removing an object from the association, and a method for removing all associated objected from the association:
522
+
523
+ class Post < Sequel::Model
524
+ one_to_many :comments
525
+ many_to_many :tags
526
+ end
527
+
528
+ post = Post.create(:name => 'hi!')
529
+ post.comments
530
+ comment = Comment.create(:text=>'hi')
531
+ post.add_comment(comment)
532
+ post.remove_comment(comment)
533
+ post.remove_all_comments
534
+ tag = Tag.create(:tag=>'interesting')
535
+ post.add_tag(tag)
536
+ post.remove_tag(tag)
537
+ post.remove_all_tags
538
+
539
+ All associations add a dataset method that can be used to further filter or reorder the returned objects, or modify all of them:
540
+
541
+ # Delete all of this post's comments from the database
542
+ Post.comments_dataset.destroy
543
+
544
+ # Return all tags related to this post with no subscribers, ordered by the tag's name
545
+ Post.tags_dataset.filter(:subscribers=>0).order(:name).all
546
+
547
+ === Eager Loading
548
+
549
+ Associations can be eagerly loaded via .eager and the :eager association option. Eager loading is used when loading a group of objects. It loads all associated objects for all of the current objects in one query, instead of using a separate query to get the associated objects for each current object. Eager loading requires that you retrieve all model objects at once via .all (instead of individually by .each). Eager loading can be cascaded, loading association's associated objects.
550
+
551
+ class Person < Sequel::Model
552
+ one_to_many :posts, :eager=>[:tags]
553
+ end
554
+
555
+ class Post < Sequel::Model
556
+ many_to_one :person
557
+ one_to_many :replies
558
+ many_to_many :tags
559
+ end
560
+
561
+ class Tag < Sequel::Model
562
+ many_to_many :posts
563
+ many_to_many :replies
564
+ end
565
+
566
+ class Reply < Sequel::Model
567
+ many_to_one :person
568
+ many_to_one :post
569
+ many_to_many :tags
570
+ end
571
+
572
+ # Eager loading via .eager
573
+ Post.eager(:person).all
574
+
575
+ # eager is a dataset method, so it works with filters/orders/limits/etc.
576
+ Post.filter{|o| o.topic > 'M'}.order(:date).limit(5).eager(:person).all
577
+
578
+ person = Person.first
579
+ # Eager loading via :eager (will eagerly load the tags for this person's posts)
580
+ person.posts
581
+
582
+ # These are equivalent
583
+ Post.eager(:person, :tags).all
584
+ Post.eager(:person).eager(:tags).all
585
+
586
+ # Cascading via .eager
587
+ Tag.eager(:posts=>:replies).all
588
+
589
+ # Will also grab all associated posts' tags (because of :eager)
590
+ Reply.eager(:person=>:posts).all
591
+
592
+ # No depth limit (other than memory/stack), and will also grab posts' tags
593
+ # Loads all people, their posts, their posts' tags, replies to those posts,
594
+ # the person for each reply, the tag for each reply, and all posts and
595
+ # replies that have that tag. Uses a total of 8 queries.
596
+ Person.eager(:posts=>{:replies=>[:person, {:tags=>{:posts, :replies}}]}).all
597
+
598
+ In addition to using eager, you can also use eager_graph, which will use a single query to get the object and all associated objects. This may be necessary if you want to filter or order the result set based on columns in associated tables. It works with cascading as well, the syntax is exactly the same. Note that using eager_graph to eagerly load multiple *_to_many associations will cause the result set to be a cartesian product, so you should be very careful with your filters when using it in that case.
599
+
600
+ === Extending the underlying dataset
601
+
602
+ The obvious way to add table-wide logic is to define class methods to the model class definition. That way you can define subsets of the underlying dataset, change the ordering, or perform actions on multiple records:
603
+
604
+ class Post < Sequel::Model
605
+ def self.posts_with_few_comments
606
+ filter{|o| o.num_comments < 30}
607
+ end
608
+
609
+ def self.clean_posts_with_few_comments
610
+ posts_with_few_comments.delete
611
+ end
612
+ end
613
+
614
+ You can also implement table-wide logic by defining methods on the dataset:
615
+
616
+ class Post < Sequel::Model
617
+ def_dataset_method(:posts_with_few_comments) do
618
+ filter{|o| o.num_comments < 30}
619
+ end
620
+
621
+ def_dataset_method(:clean_posts_with_few_comments) do
622
+ posts_with_few_comments.delete
623
+ end
624
+ end
625
+
626
+ This is the recommended way of implementing table-wide operations, and allows you to have access to your model API from filtered datasets as well:
627
+
628
+ Post.filter(:category => 'ruby').clean_posts_with_few_comments
629
+
630
+ Sequel models also provide a short hand notation for filters:
631
+
632
+ class Post < Sequel::Model
633
+ subset(:posts_with_few_comments){|o| o.num_comments < 30}
634
+ subset :invisible, ~:visible
635
+ end
636
+
637
+ === Model Validations
638
+
639
+ You can define a validate method for your model, which save
640
+ will check before attempting to save the model in the database.
641
+ If an attribute of the model isn't valid, you should add a error
642
+ message for that attribute to the model object's errors. If an
643
+ object has any errors added by the validate method, save will
644
+ raise an error or return false depending on how it is configured.
645
+
646
+ class Post < Sequel::Model
647
+ def validate
648
+ errors[:name] << "can't be empty" if name.empty?
649
+ errors[:written_on] << "should be in the past" if written_on >= Time.now
650
+ end
651
+ end
652
+