Hi! I've created a draft of what would be the Abstract of my application.
Please review it, if I'm mistaken in something or left out an important point. This will be the public part of the application. There will be a more detailed description, but it will be visible only to mentors. BEGIN Creating a native object persistence module for PHP Object persistence is a form of Object-Relational Mapping, a technology that has recently became very important for complex web applications. For the PHP developer, ORM means a layer that abstracts the complexity of the relational database, and presents a nicer, object-oriented interface. So it simplifies data access. There are many different implementations, most are written in PHP. I'm proposing a native (compiled from c) extension that would only support some basic features, but can be extended (with PHP) to have complex, high-level features (like database schema auto-discovery). The overall goal is to have an extension bundled with PHP, that could be a common base for full ORM solutions. If the currently very diverse ORM implementations would have a common base, it would ease the learning of different implementations, and enable ORM developers to concentrate on high-level features. Using ORM solutions based on a native module would also mean a smaller overhead compared to pure-PHP implementations. The project (in it's current form) is about 70% ready, and during the summer my plan is to make it about 90% complete. The most important goals for the summer are: - Implementing a database driver module that uses PDO, so all PDO supported databases will be supported. - Implementing exception-based error handling. - Rewriting the outer interface to what the community finds the best. - Some testing, finding and eliminating bugs. So the extension will be mostly usable. However it won't be complete. It will still lack: - A good documentation, - a full code review to eliminate possible security holes, - support for safe_mode and for cases where non-controlled PHP code is used (for example web hosting). For the current status of the project and more information consult the project's wiki at http://dbobj.sourceforge.net/ . END Adam -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php