summaryrefslogtreecommitdiff
path: root/idiorm.php
AgeCommit message (Expand)Author
2010-10-07_build_update method now uses new _create_placeholders methodJamie Matthews
2010-10-07Add where_in and where_not_in methods, tests and docsJamie Matthews
2010-10-07Refactor and simplify WHERE condition buildingJamie Matthews
2010-10-06Change variable name _where -> _where_conditions for clarityJamie Matthews
2010-09-20All identifiers (table names, column names) are now quoted with backticksJamie Matthews
2010-09-20Refactor and split up save methodJamie Matthews
2010-09-20Fix typoJamie Matthews
2010-09-20Simplify _run method, move logic for the different types of query into the se...Jamie Matthews
2010-09-20Refactor and clean up the _build_select method. Split each part of the query ...Jamie Matthews
2010-09-19Make all private methods and properties protected, change internalJamie Matthews
2010-09-16Add where_not_like method, docs and testJamie Matthews
2010-09-14Remove version info from source and README as this is misleading. Tags are us...jamie
2010-09-14Small changes to commentsJamie Matthews
2010-09-14BACKWARDS INCOMPATIBLE CHANGE: rename where_equals method to where_equal for ...Jamie Matthews
2010-09-14Change order of arguments to add_where methodJamie Matthews
2010-09-14Add code, tests and docs for inequality operators: where_gt, where_lt, where_...Jamie Matthews
2010-09-14Remove some pointless class constantsJamie Matthews
2010-07-05Version 0.5Jamie Matthews
2010-07-05Add 'driver_options' setting to allow driver-specific connection options to b...Jamie Matthews
2010-07-05Clean up setup_db functionJamie Matthews
2010-06-08Fix default connection string for in-memory SQLite database. Closes #1Jamie Matthews
2010-04-28Refactor WHERE clause building loopJamie Matthews
2010-04-28Add GitHub URL to comments in main class fileJamie Matthews
2010-04-17Cleaned up and refactored internals of adding WHERE clausesJamie Matthews
2010-04-17Small refactoring of delete method to clean upJamie Matthews
2010-04-12Version 0.4Jamie Matthews
2010-04-12Added support for COUNT queriesJamie Matthews
2010-03-21Fixed small bug when new objects are created, saved, edited and then saved ag...Jamie Matthews
2010-02-26Version 0.3Jamie Matthews
2010-02-26Fixed multiple bugs in query buildingJamie Matthews
2010-02-25Allow passing username and password to PDO constructor for eg. MySQL adapterJamie Matthews
2010-02-13Correct version numberJamie Matthews
2010-02-13Clarified comments on find_one and find_manyJamie Matthews
2010-02-13Added where_like method, documentation and tests. Changing API to use alterna...Jamie Matthews
2010-02-13Added raw_query support, documentation and testsJamie Matthews
2010-02-13Added raw_where support, documentation and testsJamie Matthews
2010-02-13Improved comments for test classes, moved all testing functionality out of ma...Jamie Matthews
2010-02-13Only set up the database connection if necessaryJamie Matthews
2010-02-12ORDER BY now uses bound parametersJamie Matthews
2010-02-12Added ORDER BY to queriesJamie Matthews
2010-02-11Typo in licenseJamie Matthews
2010-02-11Cleaned up formatting slightlyJamie Matthews
2010-02-11Added delete method, fixed bug with insertsJamie Matthews
2010-02-11Now sets the ID of new created objects after saveJamie Matthews
2010-02-11Added LIMIT and OFFSET, added more documentationJamie Matthews
2010-02-10Added magic methods to allow property-style get/set accessJamie Matthews
2010-02-10Added optional id argument to find_one()Jamie Matthews
2010-02-10Changed API: made run() private, now find_one() or find_many() used to end chainJamie Matthews
2010-02-10Now correctly sets up database before saveJamie Matthews
2010-02-10Moved PDO error mode into class configurationJamie Matthews