summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2013-01-15 12:18:47 +0000
committerSimon Holywell <[email protected]>2013-01-15 12:21:11 +0000
commit5a6d20c7c41c26f6b2db3d518853d931a4c53445 (patch)
tree3e5098095f96eb3fc94fafc3e4597f2047d86fa3 /README.markdown
parent5f2fbc8151fa9f154b06c073fe4a7d096cb848c9 (diff)
Add ResultSet functionality to Idiorm
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown
index 9b2a653..e06ef41 100644
--- a/README.markdown
+++ b/README.markdown
@@ -21,6 +21,7 @@ Features
* Requires no model classes, no XML configuration and no code generation: works out of the box, given only a connection string.
* Consists of just one class called `ORM`. Minimal global namespace pollution.
* Database agnostic. Currently supports SQLite and MySQL. May support others, please give it a try!
+* Supports collections of models with method chaining to filter or apply actions to multiple results at once.
Documentation
-------------
@@ -50,6 +51,9 @@ Changelog
* Add HAVING clause functionality
* Fix issue with aggregate functions always returning `int` when is `float` sometimes required - closes issue #92
* Documentation moved to [idiorm.rtfd.org](http://idiorm.rtfd.org) and built using [Sphinx](http://sphinx-doc.org/)
+* Add `ArrayAccess` support to the model instances allowing property access via `$model['field']` as well as `$model->field` - issue #51
+* Add a result set object for collections of models that can support method chains to filter or apply actions to multiple results at once - issue #51 and #22
+* Add some PHPUnit tests for newer features
#### 1.2.3 - release 2012-11-28