diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-02 15:09:03 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-02 15:09:03 +0000 |
commit | 089ef42520968c7852c97faf07e5101685885150 (patch) | |
tree | 9a458179781134d769688b2237c615664e98a7cd /activerecord/CHANGELOG | |
parent | 959f362ac483bb12dab7d0207d973f1ebadcb033 (diff) | |
download | rails-089ef42520968c7852c97faf07e5101685885150.tar.gz rails-089ef42520968c7852c97faf07e5101685885150.tar.bz2 rails-089ef42520968c7852c97faf07e5101685885150.zip |
Fixed handling of binary content in blobs and similar fields for Ruby/MySQL and SQLite #409 [xal]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@309 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 4234e4cb1d..59bcb3e712 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed handling of binary content in blobs and similar fields for Ruby/MySQL and SQLite #409 [xal] + * Added dynamic attribute-based finders as a cleaner way of getting objects by simple queries without turning to SQL. They work by appending the name of an attribute to <tt>find_by_</tt>, so you get finders like <tt>Person.find_by_user_name, Payment.find_by_transaction_id</tt>. So instead of writing <tt>Person.find_first(["user_name = ?", user_name])</tt>, you just do |