2010/12/20
DumbledORM version 0.1 released!
I'm happy to announce the release of DumbledORM 0.1. It's a major revamp from the initial release. It's still the same ~200 loc, but now chocked full of comments and under the MIT license.
A few noteworthy changes.
- PDO now throws exceptions by default. The standard default in PDO is to fail silently. This was unintended and thanks to @jimplush for reporting it. Be sure to try/catch your code appropriately.
Db::execute()
method added. All of the Db methods are publicly accessible and this method is for executing sql that doesn't require a fetch (inserts, updates, deletes, etc). The requirement for this method became clear after turning on exceptions in PDO.- Better docs. The docs in the README have been updated and reformatted.