summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2010-04-12Added support for COUNT queriesJamie Matthews
2010-02-26Fixed multiple bugs in query buildingJamie Matthews
* ORDER BY, LIMIT and OFFSET parameters cannot be bound to the query as the database surrounds them with quotes, formining invalid SQL. They are now simply concatenated to the SQL string. The documentation has been updated to mark these as "unsafe" and not suitable for use with unfiltered user input. * ORDER BY should come before LIMIT and OFFSET.
2010-02-13Added where_like method, documentation and tests. Changing API to use ↵Jamie Matthews
alternate method calls instead of class constants to specify WHERE operator.
2010-02-13Added raw_query support, documentation and testsJamie Matthews
2010-02-13Added raw_where support, documentation and testsJamie Matthews
2010-02-13Added tests for id_column and id_column_overrides settingsJamie Matthews
2010-02-13Improved comments for test classes, moved all testing functionality out of ↵Jamie Matthews
main ORM class.
2010-02-13Initial commit of testsJamie Matthews