index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
PostgreSQL: active? compatibility with the pure-Ruby driver. Still need to m...
Jeremy Kemper
2005-11-28
1
-2
/
+4
*
MySQL: active? compatibility with the pure-Ruby driver. References #428.
Jeremy Kemper
2005-11-28
1
-1
/
+5
*
Oracle: active? check pings the database rather than testing the last command...
Jeremy Kemper
2005-11-24
1
-17
/
+15
*
SQLServer: resolve column aliasing/quoting collision when using limit or offs...
Jeremy Kemper
2005-11-24
1
-1
/
+6
*
Reloading a model doesn't lose track of its connection. References #2996.
Jeremy Kemper
2005-11-24
1
-8
/
+8
*
Fixed bug where using update_attribute after pushing a record to a habtm asso...
Florian Weber
2005-11-23
1
-1
/
+5
*
MySQL, PostgreSQL: reconnect! also reconfigures the connection. Otherwise, t...
Jeremy Kemper
2005-11-22
2
-19
/
+36
*
has_and_belongs_to_many: use JOIN instead of LEFT JOIN. References #2937.
Jeremy Kemper
2005-11-21
1
-2
/
+2
*
MySQL: introduce :encoding option to specify the character set for client, co...
Jeremy Kemper
2005-11-21
1
-3
/
+23
*
Simpler Mysql load test.
Jeremy Kemper
2005-11-21
1
-2
/
+2
*
Revert [3130]. Behavior of introducing Kernel.binding causes breakage.
Marcel Molina
2005-11-21
2
-3
/
+3
*
Use Kernel.binding rather than binding to allow columns of that name. Refere...
Jeremy Kemper
2005-11-21
2
-3
/
+3
*
r3181@asus: jeremy | 2005-11-19 02:52:24 -0800
Jeremy Kemper
2005-11-19
3
-33
/
+38
*
Correct boolean handling in generated reader methods. References #2945.
Jeremy Kemper
2005-11-19
1
-2
/
+11
*
Don't generate read methods for columns whose names are not valid ruby method...
Jeremy Kemper
2005-11-19
1
-1
/
+10
*
Document :force option to create_table. References #2921.
Jeremy Kemper
2005-11-17
1
-0
/
+3
*
Don't add the same conditions twice in has_one finder sql. References #2916.
Jeremy Kemper
2005-11-17
1
-1
/
+1
*
Rename Version constant to VERSION. Closes #2802.
Marcel Molina
2005-11-17
1
-1
/
+1
*
r3118@asus: jeremy | 2005-11-16 00:32:48 -0800
Jeremy Kemper
2005-11-16
2
-2
/
+2
*
r3116@asus: jeremy | 2005-11-16 00:17:06 -0800
Jeremy Kemper
2005-11-16
1
-0
/
+425
*
r3095@asus: jeremy | 2005-11-15 22:40:51 -0800
Jeremy Kemper
2005-11-16
5
-14
/
+36
*
SQLServer: active? and reconnect! methods for handling stale connections. Re...
Jeremy Kemper
2005-11-15
1
-11
/
+8
*
SQLServer: active? and reconnect! methods for handling stale connections. Re...
Jeremy Kemper
2005-11-15
1
-3
/
+32
*
Associations handle case-equality more consistently: item.parts.is_a?(Array) ...
Jeremy Kemper
2005-11-15
1
-5
/
+12
*
SQLServer: insert uses given primary key value if not nil rather than SELECT ...
Jeremy Kemper
2005-11-14
1
-1
/
+1
*
Oracle: active? and reconnect! methods for handling stale connections. Optio...
Jeremy Kemper
2005-11-14
1
-7
/
+117
*
Fix reconnect success rate to report as percentage. References #428.
Jeremy Kemper
2005-11-14
1
-5
/
+5
*
Correct documentation for Base.delete_all. References #1568.
Jeremy Kemper
2005-11-14
1
-1
/
+1
*
Oracle: test case for column default parsing. References #2788.
Jeremy Kemper
2005-11-14
1
-1
/
+1
*
Update documentation for Migrations. References #2861.
Jeremy Kemper
2005-11-14
1
-13
/
+30
*
Reapply [2942] which was elided by [2997]. References #2788. References #2848.
Jeremy Kemper
2005-11-13
1
-1
/
+1
*
r3046@asus: jeremy | 2005-11-13 02:31:21 -0800
Jeremy Kemper
2005-11-13
1
-4
/
+8
*
r3042@asus: jeremy | 2005-11-13 01:51:08 -0800
Jeremy Kemper
2005-11-13
3
-19
/
+51
*
r3032@asus: jeremy | 2005-11-12 23:16:52 -0800
Jeremy Kemper
2005-11-13
2
-16
/
+43
*
PostgreSQL: last_insert_id uses select_value rather than using @connection.ex...
Jeremy Kemper
2005-11-13
1
-2
/
+2
*
Much faster Oracle column reflection. References #2848.
Jeremy Kemper
2005-11-13
1
-16
/
+22
*
r4331@asus: jeremy | 2005-11-12 17:03:45 -0800
Jeremy Kemper
2005-11-13
1
-2
/
+2
*
r4325@asus: jeremy | 2005-11-12 03:57:46 -0800
Jeremy Kemper
2005-11-12
2
-20
/
+54
*
Make Validations#create! use the current scope
Jamis Buck
2005-11-12
1
-0
/
+2
*
SQLServer: don't report limits for unsupported field types. Closes #2835.
Jeremy Kemper
2005-11-11
1
-0
/
+2
*
Include the Enumerable module in ActiveRecord::Errors.
Jeremy Kemper
2005-11-11
1
-0
/
+2
*
Update docs for AR::Base#clone.
Jeremy Kemper
2005-11-10
1
-1
/
+5
*
Add :group option, correspond to GROUP BY, to the find method and to the has_...
Jeremy Kemper
2005-11-10
3
-3
/
+10
*
Make sure the acts_as_list_class is resolved relative to the global namespace
Jamis Buck
2005-11-10
1
-1
/
+1
*
Don't cast nil or empty strings to a dummy date. Closes #2789.
Jeremy Kemper
2005-11-10
1
-0
/
+1
*
acts_as_list plays nicely with inheritance by remembering the class which dec...
Jeremy Kemper
2005-11-10
1
-12
/
+16
*
Fix sqlite adaptor's detection of missing dbfile or database declaration
Nicholas Seckar
2005-11-10
1
-1
/
+1
*
Fixed acts_as_list for definitions without an explicit :order #2803 [jonathan...
David Heinemeier Hansson
2005-11-09
1
-2
/
+2
*
Allow capital letters in the email address in the the validates_format_of exa...
Florian Weber
2005-11-09
1
-1
/
+1
*
r3886@sedna: jeremy | 2005-11-07 03:09:59 -0800
Jeremy Kemper
2005-11-09
3
-324
/
+89
[prev]
[next]