activerecord_csi 2.3.5.p6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (333) hide show
  1. data/CHANGELOG +5858 -0
  2. data/README +351 -0
  3. data/RUNNING_UNIT_TESTS +36 -0
  4. data/Rakefile +270 -0
  5. data/examples/associations.png +0 -0
  6. data/examples/performance.rb +162 -0
  7. data/install.rb +30 -0
  8. data/lib/active_record/aggregations.rb +261 -0
  9. data/lib/active_record/association_preload.rb +389 -0
  10. data/lib/active_record/associations/association_collection.rb +475 -0
  11. data/lib/active_record/associations/association_proxy.rb +278 -0
  12. data/lib/active_record/associations/belongs_to_association.rb +76 -0
  13. data/lib/active_record/associations/belongs_to_polymorphic_association.rb +53 -0
  14. data/lib/active_record/associations/has_and_belongs_to_many_association.rb +143 -0
  15. data/lib/active_record/associations/has_many_association.rb +122 -0
  16. data/lib/active_record/associations/has_many_through_association.rb +266 -0
  17. data/lib/active_record/associations/has_one_association.rb +133 -0
  18. data/lib/active_record/associations/has_one_through_association.rb +37 -0
  19. data/lib/active_record/associations.rb +2241 -0
  20. data/lib/active_record/attribute_methods.rb +388 -0
  21. data/lib/active_record/autosave_association.rb +364 -0
  22. data/lib/active_record/base.rb +3171 -0
  23. data/lib/active_record/batches.rb +81 -0
  24. data/lib/active_record/calculations.rb +311 -0
  25. data/lib/active_record/callbacks.rb +360 -0
  26. data/lib/active_record/connection_adapters/abstract/connection_pool.rb +371 -0
  27. data/lib/active_record/connection_adapters/abstract/connection_specification.rb +139 -0
  28. data/lib/active_record/connection_adapters/abstract/database_statements.rb +289 -0
  29. data/lib/active_record/connection_adapters/abstract/query_cache.rb +94 -0
  30. data/lib/active_record/connection_adapters/abstract/quoting.rb +69 -0
  31. data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +722 -0
  32. data/lib/active_record/connection_adapters/abstract/schema_statements.rb +434 -0
  33. data/lib/active_record/connection_adapters/abstract_adapter.rb +241 -0
  34. data/lib/active_record/connection_adapters/mysql_adapter.rb +630 -0
  35. data/lib/active_record/connection_adapters/postgresql_adapter.rb +1113 -0
  36. data/lib/active_record/connection_adapters/sqlite3_adapter.rb +34 -0
  37. data/lib/active_record/connection_adapters/sqlite_adapter.rb +453 -0
  38. data/lib/active_record/dirty.rb +183 -0
  39. data/lib/active_record/dynamic_finder_match.rb +41 -0
  40. data/lib/active_record/dynamic_scope_match.rb +25 -0
  41. data/lib/active_record/fixtures.rb +996 -0
  42. data/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  43. data/lib/active_record/locale/en.yml +58 -0
  44. data/lib/active_record/locking/optimistic.rb +148 -0
  45. data/lib/active_record/locking/pessimistic.rb +55 -0
  46. data/lib/active_record/migration.rb +566 -0
  47. data/lib/active_record/named_scope.rb +192 -0
  48. data/lib/active_record/nested_attributes.rb +392 -0
  49. data/lib/active_record/observer.rb +197 -0
  50. data/lib/active_record/query_cache.rb +33 -0
  51. data/lib/active_record/reflection.rb +320 -0
  52. data/lib/active_record/schema.rb +51 -0
  53. data/lib/active_record/schema_dumper.rb +182 -0
  54. data/lib/active_record/serialization.rb +101 -0
  55. data/lib/active_record/serializers/json_serializer.rb +91 -0
  56. data/lib/active_record/serializers/xml_serializer.rb +357 -0
  57. data/lib/active_record/session_store.rb +326 -0
  58. data/lib/active_record/test_case.rb +66 -0
  59. data/lib/active_record/timestamp.rb +71 -0
  60. data/lib/active_record/transactions.rb +235 -0
  61. data/lib/active_record/validations.rb +1135 -0
  62. data/lib/active_record/version.rb +9 -0
  63. data/lib/active_record.rb +84 -0
  64. data/lib/activerecord.rb +2 -0
  65. data/test/assets/example.log +1 -0
  66. data/test/assets/flowers.jpg +0 -0
  67. data/test/cases/aaa_create_tables_test.rb +24 -0
  68. data/test/cases/active_schema_test_mysql.rb +100 -0
  69. data/test/cases/active_schema_test_postgresql.rb +24 -0
  70. data/test/cases/adapter_test.rb +145 -0
  71. data/test/cases/aggregations_test.rb +167 -0
  72. data/test/cases/ar_schema_test.rb +32 -0
  73. data/test/cases/associations/belongs_to_associations_test.rb +425 -0
  74. data/test/cases/associations/callbacks_test.rb +161 -0
  75. data/test/cases/associations/cascaded_eager_loading_test.rb +131 -0
  76. data/test/cases/associations/eager_load_includes_full_sti_class_test.rb +36 -0
  77. data/test/cases/associations/eager_load_nested_include_test.rb +130 -0
  78. data/test/cases/associations/eager_singularization_test.rb +145 -0
  79. data/test/cases/associations/eager_test.rb +834 -0
  80. data/test/cases/associations/extension_test.rb +62 -0
  81. data/test/cases/associations/habtm_join_table_test.rb +56 -0
  82. data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +822 -0
  83. data/test/cases/associations/has_many_associations_test.rb +1134 -0
  84. data/test/cases/associations/has_many_through_associations_test.rb +346 -0
  85. data/test/cases/associations/has_one_associations_test.rb +330 -0
  86. data/test/cases/associations/has_one_through_associations_test.rb +209 -0
  87. data/test/cases/associations/inner_join_association_test.rb +93 -0
  88. data/test/cases/associations/join_model_test.rb +712 -0
  89. data/test/cases/associations_test.rb +262 -0
  90. data/test/cases/attribute_methods_test.rb +305 -0
  91. data/test/cases/autosave_association_test.rb +1142 -0
  92. data/test/cases/base_test.rb +2154 -0
  93. data/test/cases/batches_test.rb +61 -0
  94. data/test/cases/binary_test.rb +30 -0
  95. data/test/cases/calculations_test.rb +348 -0
  96. data/test/cases/callbacks_observers_test.rb +38 -0
  97. data/test/cases/callbacks_test.rb +438 -0
  98. data/test/cases/class_inheritable_attributes_test.rb +32 -0
  99. data/test/cases/column_alias_test.rb +17 -0
  100. data/test/cases/column_definition_test.rb +70 -0
  101. data/test/cases/connection_pool_test.rb +25 -0
  102. data/test/cases/connection_test_firebird.rb +8 -0
  103. data/test/cases/connection_test_mysql.rb +64 -0
  104. data/test/cases/copy_table_test_sqlite.rb +80 -0
  105. data/test/cases/database_statements_test.rb +12 -0
  106. data/test/cases/datatype_test_postgresql.rb +204 -0
  107. data/test/cases/date_time_test.rb +37 -0
  108. data/test/cases/default_test_firebird.rb +16 -0
  109. data/test/cases/defaults_test.rb +111 -0
  110. data/test/cases/deprecated_finder_test.rb +30 -0
  111. data/test/cases/dirty_test.rb +316 -0
  112. data/test/cases/finder_respond_to_test.rb +76 -0
  113. data/test/cases/finder_test.rb +1066 -0
  114. data/test/cases/fixtures_test.rb +656 -0
  115. data/test/cases/helper.rb +68 -0
  116. data/test/cases/i18n_test.rb +46 -0
  117. data/test/cases/inheritance_test.rb +262 -0
  118. data/test/cases/invalid_date_test.rb +24 -0
  119. data/test/cases/json_serialization_test.rb +205 -0
  120. data/test/cases/lifecycle_test.rb +193 -0
  121. data/test/cases/locking_test.rb +304 -0
  122. data/test/cases/method_scoping_test.rb +704 -0
  123. data/test/cases/migration_test.rb +1523 -0
  124. data/test/cases/migration_test_firebird.rb +124 -0
  125. data/test/cases/mixin_test.rb +96 -0
  126. data/test/cases/modules_test.rb +81 -0
  127. data/test/cases/multiple_db_test.rb +85 -0
  128. data/test/cases/named_scope_test.rb +361 -0
  129. data/test/cases/nested_attributes_test.rb +581 -0
  130. data/test/cases/pk_test.rb +119 -0
  131. data/test/cases/pooled_connections_test.rb +103 -0
  132. data/test/cases/query_cache_test.rb +123 -0
  133. data/test/cases/readonly_test.rb +107 -0
  134. data/test/cases/reflection_test.rb +194 -0
  135. data/test/cases/reload_models_test.rb +22 -0
  136. data/test/cases/repair_helper.rb +50 -0
  137. data/test/cases/reserved_word_test_mysql.rb +176 -0
  138. data/test/cases/sanitize_test.rb +25 -0
  139. data/test/cases/schema_authorization_test_postgresql.rb +75 -0
  140. data/test/cases/schema_dumper_test.rb +211 -0
  141. data/test/cases/schema_test_postgresql.rb +178 -0
  142. data/test/cases/serialization_test.rb +47 -0
  143. data/test/cases/synonym_test_oracle.rb +17 -0
  144. data/test/cases/timestamp_test.rb +75 -0
  145. data/test/cases/transactions_test.rb +522 -0
  146. data/test/cases/unconnected_test.rb +32 -0
  147. data/test/cases/validations_i18n_test.rb +955 -0
  148. data/test/cases/validations_test.rb +1640 -0
  149. data/test/cases/xml_serialization_test.rb +240 -0
  150. data/test/config.rb +5 -0
  151. data/test/connections/jdbc_jdbcderby/connection.rb +18 -0
  152. data/test/connections/jdbc_jdbch2/connection.rb +18 -0
  153. data/test/connections/jdbc_jdbchsqldb/connection.rb +18 -0
  154. data/test/connections/jdbc_jdbcmysql/connection.rb +26 -0
  155. data/test/connections/jdbc_jdbcpostgresql/connection.rb +26 -0
  156. data/test/connections/jdbc_jdbcsqlite3/connection.rb +25 -0
  157. data/test/connections/native_db2/connection.rb +25 -0
  158. data/test/connections/native_firebird/connection.rb +26 -0
  159. data/test/connections/native_frontbase/connection.rb +27 -0
  160. data/test/connections/native_mysql/connection.rb +25 -0
  161. data/test/connections/native_openbase/connection.rb +21 -0
  162. data/test/connections/native_oracle/connection.rb +27 -0
  163. data/test/connections/native_postgresql/connection.rb +25 -0
  164. data/test/connections/native_sqlite/connection.rb +25 -0
  165. data/test/connections/native_sqlite3/connection.rb +25 -0
  166. data/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  167. data/test/connections/native_sybase/connection.rb +23 -0
  168. data/test/fixtures/accounts.yml +29 -0
  169. data/test/fixtures/all/developers.yml +0 -0
  170. data/test/fixtures/all/people.csv +0 -0
  171. data/test/fixtures/all/tasks.yml +0 -0
  172. data/test/fixtures/author_addresses.yml +5 -0
  173. data/test/fixtures/author_favorites.yml +4 -0
  174. data/test/fixtures/authors.yml +9 -0
  175. data/test/fixtures/binaries.yml +132 -0
  176. data/test/fixtures/books.yml +7 -0
  177. data/test/fixtures/categories/special_categories.yml +9 -0
  178. data/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  179. data/test/fixtures/categories.yml +14 -0
  180. data/test/fixtures/categories_ordered.yml +7 -0
  181. data/test/fixtures/categories_posts.yml +23 -0
  182. data/test/fixtures/categorizations.yml +17 -0
  183. data/test/fixtures/clubs.yml +6 -0
  184. data/test/fixtures/comments.yml +59 -0
  185. data/test/fixtures/companies.yml +56 -0
  186. data/test/fixtures/computers.yml +4 -0
  187. data/test/fixtures/courses.yml +7 -0
  188. data/test/fixtures/customers.yml +26 -0
  189. data/test/fixtures/developers.yml +21 -0
  190. data/test/fixtures/developers_projects.yml +17 -0
  191. data/test/fixtures/edges.yml +6 -0
  192. data/test/fixtures/entrants.yml +14 -0
  193. data/test/fixtures/fixture_database.sqlite3 +0 -0
  194. data/test/fixtures/fixture_database_2.sqlite3 +0 -0
  195. data/test/fixtures/fk_test_has_fk.yml +3 -0
  196. data/test/fixtures/fk_test_has_pk.yml +2 -0
  197. data/test/fixtures/funny_jokes.yml +10 -0
  198. data/test/fixtures/items.yml +4 -0
  199. data/test/fixtures/jobs.yml +7 -0
  200. data/test/fixtures/legacy_things.yml +3 -0
  201. data/test/fixtures/mateys.yml +4 -0
  202. data/test/fixtures/member_types.yml +6 -0
  203. data/test/fixtures/members.yml +6 -0
  204. data/test/fixtures/memberships.yml +20 -0
  205. data/test/fixtures/minimalistics.yml +2 -0
  206. data/test/fixtures/mixed_case_monkeys.yml +6 -0
  207. data/test/fixtures/mixins.yml +29 -0
  208. data/test/fixtures/movies.yml +7 -0
  209. data/test/fixtures/naked/csv/accounts.csv +1 -0
  210. data/test/fixtures/naked/yml/accounts.yml +1 -0
  211. data/test/fixtures/naked/yml/companies.yml +1 -0
  212. data/test/fixtures/naked/yml/courses.yml +1 -0
  213. data/test/fixtures/organizations.yml +5 -0
  214. data/test/fixtures/owners.yml +7 -0
  215. data/test/fixtures/parrots.yml +27 -0
  216. data/test/fixtures/parrots_pirates.yml +7 -0
  217. data/test/fixtures/people.yml +15 -0
  218. data/test/fixtures/pets.yml +14 -0
  219. data/test/fixtures/pirates.yml +9 -0
  220. data/test/fixtures/posts.yml +52 -0
  221. data/test/fixtures/price_estimates.yml +7 -0
  222. data/test/fixtures/projects.yml +7 -0
  223. data/test/fixtures/readers.yml +9 -0
  224. data/test/fixtures/references.yml +17 -0
  225. data/test/fixtures/reserved_words/distinct.yml +5 -0
  226. data/test/fixtures/reserved_words/distincts_selects.yml +11 -0
  227. data/test/fixtures/reserved_words/group.yml +14 -0
  228. data/test/fixtures/reserved_words/select.yml +8 -0
  229. data/test/fixtures/reserved_words/values.yml +7 -0
  230. data/test/fixtures/ships.yml +5 -0
  231. data/test/fixtures/sponsors.yml +9 -0
  232. data/test/fixtures/subscribers.yml +7 -0
  233. data/test/fixtures/subscriptions.yml +12 -0
  234. data/test/fixtures/taggings.yml +28 -0
  235. data/test/fixtures/tags.yml +7 -0
  236. data/test/fixtures/tasks.yml +7 -0
  237. data/test/fixtures/topics.yml +42 -0
  238. data/test/fixtures/toys.yml +4 -0
  239. data/test/fixtures/treasures.yml +10 -0
  240. data/test/fixtures/vertices.yml +4 -0
  241. data/test/fixtures/warehouse-things.yml +3 -0
  242. data/test/migrations/broken/100_migration_that_raises_exception.rb +10 -0
  243. data/test/migrations/decimal/1_give_me_big_numbers.rb +15 -0
  244. data/test/migrations/duplicate/1_people_have_last_names.rb +9 -0
  245. data/test/migrations/duplicate/2_we_need_reminders.rb +12 -0
  246. data/test/migrations/duplicate/3_foo.rb +7 -0
  247. data/test/migrations/duplicate/3_innocent_jointable.rb +12 -0
  248. data/test/migrations/duplicate_names/20080507052938_chunky.rb +7 -0
  249. data/test/migrations/duplicate_names/20080507053028_chunky.rb +7 -0
  250. data/test/migrations/interleaved/pass_1/3_innocent_jointable.rb +12 -0
  251. data/test/migrations/interleaved/pass_2/1_people_have_last_names.rb +9 -0
  252. data/test/migrations/interleaved/pass_2/3_innocent_jointable.rb +12 -0
  253. data/test/migrations/interleaved/pass_3/1_people_have_last_names.rb +9 -0
  254. data/test/migrations/interleaved/pass_3/2_i_raise_on_down.rb +8 -0
  255. data/test/migrations/interleaved/pass_3/3_innocent_jointable.rb +12 -0
  256. data/test/migrations/missing/1000_people_have_middle_names.rb +9 -0
  257. data/test/migrations/missing/1_people_have_last_names.rb +9 -0
  258. data/test/migrations/missing/3_we_need_reminders.rb +12 -0
  259. data/test/migrations/missing/4_innocent_jointable.rb +12 -0
  260. data/test/migrations/valid/1_people_have_last_names.rb +9 -0
  261. data/test/migrations/valid/2_we_need_reminders.rb +12 -0
  262. data/test/migrations/valid/3_innocent_jointable.rb +12 -0
  263. data/test/models/author.rb +146 -0
  264. data/test/models/auto_id.rb +4 -0
  265. data/test/models/binary.rb +2 -0
  266. data/test/models/bird.rb +3 -0
  267. data/test/models/book.rb +4 -0
  268. data/test/models/categorization.rb +5 -0
  269. data/test/models/category.rb +34 -0
  270. data/test/models/citation.rb +6 -0
  271. data/test/models/club.rb +13 -0
  272. data/test/models/column_name.rb +3 -0
  273. data/test/models/comment.rb +29 -0
  274. data/test/models/company.rb +171 -0
  275. data/test/models/company_in_module.rb +61 -0
  276. data/test/models/computer.rb +3 -0
  277. data/test/models/contact.rb +16 -0
  278. data/test/models/contract.rb +5 -0
  279. data/test/models/course.rb +3 -0
  280. data/test/models/customer.rb +73 -0
  281. data/test/models/default.rb +2 -0
  282. data/test/models/developer.rb +101 -0
  283. data/test/models/edge.rb +5 -0
  284. data/test/models/entrant.rb +3 -0
  285. data/test/models/essay.rb +3 -0
  286. data/test/models/event.rb +3 -0
  287. data/test/models/guid.rb +2 -0
  288. data/test/models/item.rb +7 -0
  289. data/test/models/job.rb +5 -0
  290. data/test/models/joke.rb +3 -0
  291. data/test/models/keyboard.rb +3 -0
  292. data/test/models/legacy_thing.rb +3 -0
  293. data/test/models/matey.rb +4 -0
  294. data/test/models/member.rb +12 -0
  295. data/test/models/member_detail.rb +5 -0
  296. data/test/models/member_type.rb +3 -0
  297. data/test/models/membership.rb +9 -0
  298. data/test/models/minimalistic.rb +2 -0
  299. data/test/models/mixed_case_monkey.rb +3 -0
  300. data/test/models/movie.rb +5 -0
  301. data/test/models/order.rb +4 -0
  302. data/test/models/organization.rb +6 -0
  303. data/test/models/owner.rb +5 -0
  304. data/test/models/parrot.rb +16 -0
  305. data/test/models/person.rb +16 -0
  306. data/test/models/pet.rb +5 -0
  307. data/test/models/pirate.rb +70 -0
  308. data/test/models/post.rb +100 -0
  309. data/test/models/price_estimate.rb +3 -0
  310. data/test/models/project.rb +30 -0
  311. data/test/models/reader.rb +4 -0
  312. data/test/models/reference.rb +4 -0
  313. data/test/models/reply.rb +46 -0
  314. data/test/models/ship.rb +10 -0
  315. data/test/models/ship_part.rb +5 -0
  316. data/test/models/sponsor.rb +4 -0
  317. data/test/models/subject.rb +4 -0
  318. data/test/models/subscriber.rb +8 -0
  319. data/test/models/subscription.rb +4 -0
  320. data/test/models/tag.rb +7 -0
  321. data/test/models/tagging.rb +10 -0
  322. data/test/models/task.rb +3 -0
  323. data/test/models/topic.rb +80 -0
  324. data/test/models/toy.rb +6 -0
  325. data/test/models/treasure.rb +8 -0
  326. data/test/models/vertex.rb +9 -0
  327. data/test/models/warehouse_thing.rb +5 -0
  328. data/test/schema/mysql_specific_schema.rb +24 -0
  329. data/test/schema/postgresql_specific_schema.rb +114 -0
  330. data/test/schema/schema.rb +493 -0
  331. data/test/schema/schema2.rb +6 -0
  332. data/test/schema/sqlite_specific_schema.rb +25 -0
  333. metadata +420 -0
data/README ADDED
@@ -0,0 +1,351 @@
1
+ = Active Record -- Object-relation mapping put on rails
2
+
3
+ Active Record connects business objects and database tables to create a persistable
4
+ domain model where logic and data are presented in one wrapping. It's an implementation
5
+ of the object-relational mapping (ORM) pattern[http://www.martinfowler.com/eaaCatalog/activeRecord.html]
6
+ by the same name as described by Martin Fowler:
7
+
8
+ "An object that wraps a row in a database table or view, encapsulates
9
+ the database access, and adds domain logic on that data."
10
+
11
+ Active Record's main contribution to the pattern is to relieve the original of two stunting problems:
12
+ lack of associations and inheritance. By adding a simple domain language-like set of macros to describe
13
+ the former and integrating the Single Table Inheritance pattern for the latter, Active Record narrows the
14
+ gap of functionality between the data mapper and active record approach.
15
+
16
+ A short rundown of the major features:
17
+
18
+ * Automated mapping between classes and tables, attributes and columns.
19
+
20
+ class Product < ActiveRecord::Base; end
21
+
22
+ ...is automatically mapped to the table named "products", such as:
23
+
24
+ CREATE TABLE products (
25
+ id int(11) NOT NULL auto_increment,
26
+ name varchar(255),
27
+ PRIMARY KEY (id)
28
+ );
29
+
30
+ ...which again gives Product#name and Product#name=(new_name)
31
+
32
+ {Learn more}[link:classes/ActiveRecord/Base.html]
33
+
34
+
35
+ * Associations between objects controlled by simple meta-programming macros.
36
+
37
+ class Firm < ActiveRecord::Base
38
+ has_many :clients
39
+ has_one :account
40
+ belongs_to :conglomorate
41
+ end
42
+
43
+ {Learn more}[link:classes/ActiveRecord/Associations/ClassMethods.html]
44
+
45
+
46
+ * Aggregations of value objects controlled by simple meta-programming macros.
47
+
48
+ class Account < ActiveRecord::Base
49
+ composed_of :balance, :class_name => "Money",
50
+ :mapping => %w(balance amount)
51
+ composed_of :address,
52
+ :mapping => [%w(address_street street), %w(address_city city)]
53
+ end
54
+
55
+ {Learn more}[link:classes/ActiveRecord/Aggregations/ClassMethods.html]
56
+
57
+
58
+ * Validation rules that can differ for new or existing objects.
59
+
60
+ class Account < ActiveRecord::Base
61
+ validates_presence_of :subdomain, :name, :email_address, :password
62
+ validates_uniqueness_of :subdomain
63
+ validates_acceptance_of :terms_of_service, :on => :create
64
+ validates_confirmation_of :password, :email_address, :on => :create
65
+ end
66
+
67
+ {Learn more}[link:classes/ActiveRecord/Validations.html]
68
+
69
+ * Callbacks as methods or queues on the entire lifecycle (instantiation, saving, destroying, validating, etc).
70
+
71
+ class Person < ActiveRecord::Base
72
+ def before_destroy # is called just before Person#destroy
73
+ CreditCard.find(credit_card_id).destroy
74
+ end
75
+ end
76
+
77
+ class Account < ActiveRecord::Base
78
+ after_find :eager_load, 'self.class.announce(#{id})'
79
+ end
80
+
81
+ {Learn more}[link:classes/ActiveRecord/Callbacks.html]
82
+
83
+
84
+ * Observers for the entire lifecycle
85
+
86
+ class CommentObserver < ActiveRecord::Observer
87
+ def after_create(comment) # is called just after Comment#save
88
+ Notifications.deliver_new_comment("david@loudthinking.com", comment)
89
+ end
90
+ end
91
+
92
+ {Learn more}[link:classes/ActiveRecord/Observer.html]
93
+
94
+
95
+ * Inheritance hierarchies
96
+
97
+ class Company < ActiveRecord::Base; end
98
+ class Firm < Company; end
99
+ class Client < Company; end
100
+ class PriorityClient < Client; end
101
+
102
+ {Learn more}[link:classes/ActiveRecord/Base.html]
103
+
104
+
105
+ * Transactions
106
+
107
+ # Database transaction
108
+ Account.transaction do
109
+ david.withdrawal(100)
110
+ mary.deposit(100)
111
+ end
112
+
113
+ {Learn more}[link:classes/ActiveRecord/Transactions/ClassMethods.html]
114
+
115
+
116
+ * Reflections on columns, associations, and aggregations
117
+
118
+ reflection = Firm.reflect_on_association(:clients)
119
+ reflection.klass # => Client (class)
120
+ Firm.columns # Returns an array of column descriptors for the firms table
121
+
122
+ {Learn more}[link:classes/ActiveRecord/Reflection/ClassMethods.html]
123
+
124
+
125
+ * Direct manipulation (instead of service invocation)
126
+
127
+ So instead of (Hibernate[http://www.hibernate.org/] example):
128
+
129
+ long pkId = 1234;
130
+ DomesticCat pk = (DomesticCat) sess.load( Cat.class, new Long(pkId) );
131
+ // something interesting involving a cat...
132
+ sess.save(cat);
133
+ sess.flush(); // force the SQL INSERT
134
+
135
+ Active Record lets you:
136
+
137
+ pkId = 1234
138
+ cat = Cat.find(pkId)
139
+ # something even more interesting involving the same cat...
140
+ cat.save
141
+
142
+ {Learn more}[link:classes/ActiveRecord/Base.html]
143
+
144
+
145
+ * Database abstraction through simple adapters (~100 lines) with a shared connector
146
+
147
+ ActiveRecord::Base.establish_connection(:adapter => "sqlite", :database => "dbfile")
148
+
149
+ ActiveRecord::Base.establish_connection(
150
+ :adapter => "mysql",
151
+ :host => "localhost",
152
+ :username => "me",
153
+ :password => "secret",
154
+ :database => "activerecord"
155
+ )
156
+
157
+ {Learn more}[link:classes/ActiveRecord/Base.html#M000081] and read about the built-in support for
158
+ MySQL[link:classes/ActiveRecord/ConnectionAdapters/MysqlAdapter.html], PostgreSQL[link:classes/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html], SQLite[link:classes/ActiveRecord/ConnectionAdapters/SQLiteAdapter.html], Oracle[link:classes/ActiveRecord/ConnectionAdapters/OracleAdapter.html], SQLServer[link:classes/ActiveRecord/ConnectionAdapters/SQLServerAdapter.html], and DB2[link:classes/ActiveRecord/ConnectionAdapters/DB2Adapter.html].
159
+
160
+
161
+ * Logging support for Log4r[http://log4r.sourceforge.net] and Logger[http://www.ruby-doc.org/stdlib/libdoc/logger/rdoc]
162
+
163
+ ActiveRecord::Base.logger = Logger.new(STDOUT)
164
+ ActiveRecord::Base.logger = Log4r::Logger.new("Application Log")
165
+
166
+
167
+ * Database agnostic schema management with Migrations
168
+
169
+ class AddSystemSettings < ActiveRecord::Migration
170
+ def self.up
171
+ create_table :system_settings do |t|
172
+ t.string :name
173
+ t.string :label
174
+ t.text :value
175
+ t.string :type
176
+ t.integer :position
177
+ end
178
+
179
+ SystemSetting.create :name => "notice", :label => "Use notice?", :value => 1
180
+ end
181
+
182
+ def self.down
183
+ drop_table :system_settings
184
+ end
185
+ end
186
+
187
+ {Learn more}[link:classes/ActiveRecord/Migration.html]
188
+
189
+ == Simple example (1/2): Defining tables and classes (using MySQL)
190
+
191
+ Data definitions are specified only in the database. Active Record queries the database for
192
+ the column names (that then serves to determine which attributes are valid) on regular
193
+ object instantiation through the new constructor and relies on the column names in the rows
194
+ with the finders.
195
+
196
+ # CREATE TABLE companies (
197
+ # id int(11) unsigned NOT NULL auto_increment,
198
+ # client_of int(11),
199
+ # name varchar(255),
200
+ # type varchar(100),
201
+ # PRIMARY KEY (id)
202
+ # )
203
+
204
+ Active Record automatically links the "Company" object to the "companies" table
205
+
206
+ class Company < ActiveRecord::Base
207
+ has_many :people, :class_name => "Person"
208
+ end
209
+
210
+ class Firm < Company
211
+ has_many :clients
212
+
213
+ def people_with_all_clients
214
+ clients.inject([]) { |people, client| people + client.people }
215
+ end
216
+ end
217
+
218
+ The foreign_key is only necessary because we didn't use "firm_id" in the data definition
219
+
220
+ class Client < Company
221
+ belongs_to :firm, :foreign_key => "client_of"
222
+ end
223
+
224
+ # CREATE TABLE people (
225
+ # id int(11) unsigned NOT NULL auto_increment,
226
+ # name text,
227
+ # company_id text,
228
+ # PRIMARY KEY (id)
229
+ # )
230
+
231
+ Active Record will also automatically link the "Person" object to the "people" table
232
+
233
+ class Person < ActiveRecord::Base
234
+ belongs_to :company
235
+ end
236
+
237
+ == Simple example (2/2): Using the domain
238
+
239
+ Picking a database connection for all the Active Records
240
+
241
+ ActiveRecord::Base.establish_connection(
242
+ :adapter => "mysql",
243
+ :host => "localhost",
244
+ :username => "me",
245
+ :password => "secret",
246
+ :database => "activerecord"
247
+ )
248
+
249
+ Create some fixtures
250
+
251
+ firm = Firm.new("name" => "Next Angle")
252
+ # SQL: INSERT INTO companies (name, type) VALUES("Next Angle", "Firm")
253
+ firm.save
254
+
255
+ client = Client.new("name" => "37signals", "client_of" => firm.id)
256
+ # SQL: INSERT INTO companies (name, client_of, type) VALUES("37signals", 1, "Firm")
257
+ client.save
258
+
259
+ Lots of different finders
260
+
261
+ # SQL: SELECT * FROM companies WHERE id = 1
262
+ next_angle = Company.find(1)
263
+
264
+ # SQL: SELECT * FROM companies WHERE id = 1 AND type = 'Firm'
265
+ next_angle = Firm.find(1)
266
+
267
+ # SQL: SELECT * FROM companies WHERE id = 1 AND name = 'Next Angle'
268
+ next_angle = Company.find(:first, :conditions => "name = 'Next Angle'")
269
+
270
+ next_angle = Firm.find_by_sql("SELECT * FROM companies WHERE id = 1").first
271
+
272
+ The supertype, Company, will return subtype instances
273
+
274
+ Firm === next_angle
275
+
276
+ All the dynamic methods added by the has_many macro
277
+
278
+ next_angle.clients.empty? # true
279
+ next_angle.clients.size # total number of clients
280
+ all_clients = next_angle.clients
281
+
282
+ Constrained finds makes access security easier when ID comes from a web-app
283
+
284
+ # SQL: SELECT * FROM companies WHERE client_of = 1 AND type = 'Client' AND id = 2
285
+ thirty_seven_signals = next_angle.clients.find(2)
286
+
287
+ Bi-directional associations thanks to the "belongs_to" macro
288
+
289
+ thirty_seven_signals.firm.nil? # true
290
+
291
+
292
+ == Philosophy
293
+
294
+ Active Record attempts to provide a coherent wrapper as a solution for the inconvenience that is
295
+ object-relational mapping. The prime directive for this mapping has been to minimize
296
+ the amount of code needed to build a real-world domain model. This is made possible
297
+ by relying on a number of conventions that make it easy for Active Record to infer
298
+ complex relations and structures from a minimal amount of explicit direction.
299
+
300
+ Convention over Configuration:
301
+ * No XML-files!
302
+ * Lots of reflection and run-time extension
303
+ * Magic is not inherently a bad word
304
+
305
+ Admit the Database:
306
+ * Lets you drop down to SQL for odd cases and performance
307
+ * Doesn't attempt to duplicate or replace data definitions
308
+
309
+
310
+ == Download
311
+
312
+ The latest version of Active Record can be found at
313
+
314
+ * http://rubyforge.org/project/showfiles.php?group_id=182
315
+
316
+ Documentation can be found at
317
+
318
+ * http://ar.rubyonrails.com
319
+
320
+
321
+ == Installation
322
+
323
+ The prefered method of installing Active Record is through its GEM file. You'll need to have
324
+ RubyGems[http://rubygems.rubyforge.org/wiki/wiki.pl] installed for that, though. If you have,
325
+ then use:
326
+
327
+ % [sudo] gem install activerecord-1.10.0.gem
328
+
329
+ You can also install Active Record the old-fashioned way with the following command:
330
+
331
+ % [sudo] ruby install.rb
332
+
333
+ from its distribution directory.
334
+
335
+
336
+ == License
337
+
338
+ Active Record is released under the MIT license.
339
+
340
+
341
+ == Support
342
+
343
+ The Active Record homepage is http://www.rubyonrails.com. You can find the Active Record
344
+ RubyForge page at http://rubyforge.org/projects/activerecord. And as Jim from Rake says:
345
+
346
+ Feel free to submit commits or feature requests. If you send a patch,
347
+ remember to update the corresponding unit tests. If fact, I prefer
348
+ new feature to be submitted in the form of new unit tests.
349
+
350
+ For other information, feel free to ask on the rubyonrails-talk
351
+ (http://groups.google.com/group/rubyonrails-talk) mailing list.
@@ -0,0 +1,36 @@
1
+ == Creating the test database
2
+
3
+ The default names for the test databases are "activerecord_unittest" and
4
+ "activerecord_unittest2". If you want to use another database name then be sure
5
+ to update the connection adapter setups you want to test with in
6
+ test/connections/<your database>/connection.rb.
7
+ When you have the database online, you can import the fixture tables with
8
+ the test/schema/*.sql files.
9
+
10
+ Make sure that you create database objects with the same user that you specified in
11
+ connection.rb otherwise (on Postgres, at least) tests for default values will fail.
12
+
13
+ == Running with Rake
14
+
15
+ The easiest way to run the unit tests is through Rake. The default task runs
16
+ the entire test suite for all the adapters. You can also run the suite on just
17
+ one adapter by using the tasks test_mysql, test_sqlite, test_postgresql or any
18
+ of the other test_ tasks. For more information, checkout the full array of rake
19
+ tasks with "rake -T"
20
+
21
+ Rake can be found at http://rake.rubyforge.org
22
+
23
+ == Running by hand
24
+
25
+ Unit tests are located in test/cases directory. If you only want to run a single test suite,
26
+ you can do so with:
27
+
28
+ rake test_mysql TEST=test/cases/base_test.rb
29
+
30
+ That'll run the base suite using the MySQL-Ruby adapter. Some tests rely on the schema
31
+ being initialized - you can initialize the schema with:
32
+
33
+ rake test_mysql TEST=test/cases/aaa_create_tables_test.rb
34
+
35
+
36
+
data/Rakefile ADDED
@@ -0,0 +1,270 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'rake/testtask'
4
+ require 'rake/rdoctask'
5
+ require 'rake/packagetask'
6
+ require 'rake/gempackagetask'
7
+
8
+ require File.join(File.dirname(__FILE__), 'lib', 'active_record', 'version')
9
+ require File.expand_path(File.dirname(__FILE__)) + "/test/config"
10
+
11
+ PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
12
+ PKG_NAME = 'activerecord'
13
+ PKG_VERSION = ActiveRecord::VERSION::STRING + PKG_BUILD
14
+ PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
15
+
16
+ RELEASE_NAME = "REL #{PKG_VERSION}"
17
+
18
+ RUBY_FORGE_PROJECT = "activerecord"
19
+ RUBY_FORGE_USER = "webster132"
20
+
21
+ MYSQL_DB_USER = 'rails'
22
+
23
+ PKG_FILES = FileList[
24
+ "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "Rakefile"
25
+ ].exclude(/\bCVS\b|~$/)
26
+
27
+ def run_without_aborting(*tasks)
28
+ errors = []
29
+
30
+ tasks.each do |task|
31
+ begin
32
+ Rake::Task[task].invoke
33
+ rescue Exception
34
+ errors << task
35
+ end
36
+ end
37
+
38
+ abort "Errors running #{errors.join(', ')}" if errors.any?
39
+ end
40
+
41
+ desc 'Run mysql, sqlite, and postgresql tests by default'
42
+ task :default => :test
43
+
44
+ desc 'Run mysql, sqlite, and postgresql tests'
45
+ task :test do
46
+ tasks = defined?(JRUBY_VERSION) ?
47
+ %w(test_jdbcmysql test_jdbcsqlite3 test_jdbcpostgresql) :
48
+ %w(test_mysql test_sqlite3 test_postgresql)
49
+ run_without_aborting(*tasks)
50
+ end
51
+
52
+ for adapter in %w( mysql postgresql sqlite sqlite3 firebird db2 oracle sybase openbase frontbase jdbcmysql jdbcpostgresql jdbcsqlite3 jdbcderby jdbch2 jdbchsqldb )
53
+ Rake::TestTask.new("test_#{adapter}") { |t|
54
+ if adapter =~ /jdbc/
55
+ t.libs << "test" << "test/connections/jdbc_#{adapter}"
56
+ else
57
+ t.libs << "test" << "test/connections/native_#{adapter}"
58
+ end
59
+ adapter_short = adapter == 'db2' ? adapter : adapter[/^[a-z]+/]
60
+ t.test_files=Dir.glob( "test/cases/**/*_test{,_#{adapter_short}}.rb" ).sort
61
+ t.verbose = true
62
+ }
63
+
64
+ namespace adapter do
65
+ task :test => "test_#{adapter}"
66
+ end
67
+ end
68
+
69
+ namespace :mysql do
70
+ desc 'Build the MySQL test databases'
71
+ task :build_databases do
72
+ %x( echo "create DATABASE activerecord_unittest DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci " | mysql --user=#{MYSQL_DB_USER})
73
+ %x( echo "create DATABASE activerecord_unittest2 DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_unicode_ci " | mysql --user=#{MYSQL_DB_USER})
74
+ end
75
+
76
+ desc 'Drop the MySQL test databases'
77
+ task :drop_databases do
78
+ %x( mysqladmin --user=#{MYSQL_DB_USER} -f drop activerecord_unittest )
79
+ %x( mysqladmin --user=#{MYSQL_DB_USER} -f drop activerecord_unittest2 )
80
+ end
81
+
82
+ desc 'Rebuild the MySQL test databases'
83
+ task :rebuild_databases => [:drop_databases, :build_databases]
84
+ end
85
+
86
+ task :build_mysql_databases => 'mysql:build_databases'
87
+ task :drop_mysql_databases => 'mysql:drop_databases'
88
+ task :rebuild_mysql_databases => 'mysql:rebuild_databases'
89
+
90
+
91
+ namespace :postgresql do
92
+ desc 'Build the PostgreSQL test databases'
93
+ task :build_databases do
94
+ %x( createdb -E UTF8 activerecord_unittest )
95
+ %x( createdb -E UTF8 activerecord_unittest2 )
96
+ end
97
+
98
+ desc 'Drop the PostgreSQL test databases'
99
+ task :drop_databases do
100
+ %x( dropdb activerecord_unittest )
101
+ %x( dropdb activerecord_unittest2 )
102
+ end
103
+
104
+ desc 'Rebuild the PostgreSQL test databases'
105
+ task :rebuild_databases => [:drop_databases, :build_databases]
106
+ end
107
+
108
+ task :build_postgresql_databases => 'postgresql:build_databases'
109
+ task :drop_postgresql_databases => 'postgresql:drop_databases'
110
+ task :rebuild_postgresql_databases => 'postgresql:rebuild_databases'
111
+
112
+
113
+ namespace :frontbase do
114
+ desc 'Build the FrontBase test databases'
115
+ task :build_databases => :rebuild_frontbase_databases
116
+
117
+ desc 'Rebuild the FrontBase test databases'
118
+ task :rebuild_databases do
119
+ build_frontbase_database = Proc.new do |db_name, sql_definition_file|
120
+ %(
121
+ STOP DATABASE #{db_name};
122
+ DELETE DATABASE #{db_name};
123
+ CREATE DATABASE #{db_name};
124
+
125
+ CONNECT TO #{db_name} AS SESSION_NAME USER _SYSTEM;
126
+ SET COMMIT FALSE;
127
+
128
+ CREATE USER RAILS;
129
+ CREATE SCHEMA RAILS AUTHORIZATION RAILS;
130
+ COMMIT;
131
+
132
+ SET SESSION AUTHORIZATION RAILS;
133
+ SCRIPT '#{sql_definition_file}';
134
+
135
+ COMMIT;
136
+
137
+ DISCONNECT ALL;
138
+ )
139
+ end
140
+ create_activerecord_unittest = build_frontbase_database['activerecord_unittest', File.join(SCHEMA_ROOT, 'frontbase.sql')]
141
+ create_activerecord_unittest2 = build_frontbase_database['activerecord_unittest2', File.join(SCHEMA_ROOT, 'frontbase2.sql')]
142
+ execute_frontbase_sql = Proc.new do |sql|
143
+ system(<<-SHELL)
144
+ /Library/FrontBase/bin/sql92 <<-SQL
145
+ #{sql}
146
+ SQL
147
+ SHELL
148
+ end
149
+ execute_frontbase_sql[create_activerecord_unittest]
150
+ execute_frontbase_sql[create_activerecord_unittest2]
151
+ end
152
+ end
153
+
154
+ task :build_frontbase_databases => 'frontbase:build_databases'
155
+ task :rebuild_frontbase_databases => 'frontbase:rebuild_databases'
156
+
157
+
158
+ # Generate the RDoc documentation
159
+
160
+ Rake::RDocTask.new { |rdoc|
161
+ rdoc.rdoc_dir = 'doc'
162
+ rdoc.title = "Active Record -- Object-relation mapping put on rails"
163
+ rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
164
+ rdoc.options << '--charset' << 'utf-8'
165
+ rdoc.template = ENV['template'] ? "#{ENV['template']}.rb" : '../doc/template/horo'
166
+ rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
167
+ rdoc.rdoc_files.include('lib/**/*.rb')
168
+ rdoc.rdoc_files.exclude('lib/active_record/vendor/*')
169
+ rdoc.rdoc_files.include('dev-utils/*.rb')
170
+ }
171
+
172
+ # Enhance rdoc task to copy referenced images also
173
+ task :rdoc do
174
+ FileUtils.mkdir_p "doc/files/examples/"
175
+ FileUtils.copy "examples/associations.png", "doc/files/examples/associations.png"
176
+ end
177
+
178
+
179
+ # Create compressed packages
180
+
181
+ dist_dirs = [ "lib", "test", "examples" ]
182
+
183
+ spec = Gem::Specification.new do |s|
184
+ s.platform = Gem::Platform::RUBY
185
+ s.name = PKG_NAME+"_csi"
186
+ s.version = PKG_VERSION
187
+ s.summary = "Implements the ActiveRecord pattern for ORM."
188
+ s.description = %q{Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.}
189
+
190
+ s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG" ]
191
+ dist_dirs.each do |dir|
192
+ s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
193
+ end
194
+
195
+ s.add_dependency('activesupport', '= 2.3.5' + PKG_BUILD)
196
+
197
+ s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
198
+ s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"
199
+ s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite3"
200
+ s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite3"
201
+ s.require_path = 'lib'
202
+ s.autorequire = 'active_record'
203
+
204
+ s.has_rdoc = true
205
+ s.extra_rdoc_files = %w( README )
206
+ s.rdoc_options.concat ['--main', 'README']
207
+
208
+ s.author = "David Heinemeier Hansson"
209
+ s.email = "david@loudthinking.com"
210
+ s.homepage = "http://www.rubyonrails.org"
211
+ s.rubyforge_project = "activerecord"
212
+ end
213
+
214
+ Rake::GemPackageTask.new(spec) do |p|
215
+ p.gem_spec = spec
216
+ p.need_tar = true
217
+ p.need_zip = true
218
+ end
219
+
220
+ task :lines do
221
+ lines, codelines, total_lines, total_codelines = 0, 0, 0, 0
222
+
223
+ for file_name in FileList["lib/active_record/**/*.rb"]
224
+ next if file_name =~ /vendor/
225
+ f = File.open(file_name)
226
+
227
+ while line = f.gets
228
+ lines += 1
229
+ next if line =~ /^\s*$/
230
+ next if line =~ /^\s*#/
231
+ codelines += 1
232
+ end
233
+ puts "L: #{sprintf("%4d", lines)}, LOC #{sprintf("%4d", codelines)} | #{file_name}"
234
+
235
+ total_lines += lines
236
+ total_codelines += codelines
237
+
238
+ lines, codelines = 0, 0
239
+ end
240
+
241
+ puts "Total: Lines #{total_lines}, LOC #{total_codelines}"
242
+ end
243
+
244
+
245
+ # Publishing ------------------------------------------------------
246
+
247
+ desc "Publish the beta gem"
248
+ task :pgem => [:package] do
249
+ require 'rake/contrib/sshpublisher'
250
+ Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
251
+ `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'`
252
+ end
253
+
254
+ desc "Publish the API documentation"
255
+ task :pdoc => [:rdoc] do
256
+ require 'rake/contrib/sshpublisher'
257
+ Rake::SshDirPublisher.new("wrath.rubyonrails.org", "public_html/ar", "doc").upload
258
+ end
259
+
260
+ desc "Publish the release files to RubyForge."
261
+ task :release => [ :package ] do
262
+ require 'rubyforge'
263
+ require 'rake/contrib/rubyforgepublisher'
264
+
265
+ packages = %w( gem tgz zip ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
266
+
267
+ rubyforge = RubyForge.new
268
+ rubyforge.login
269
+ rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
270
+ end
Binary file