RSS feed - Using POG with Flex
- Optimizing your web application
- Regenerating large objects
- PHP4 or PHP5
- New and Improved
- Evolution of a cube
- POG Museum
- POG 3.0 alpha
- Initial Performance results Part 2
- Initial performance results
- Proposal: POG 3.0 object model
- Suggest a feature
- A new year, A new POG release
- Many-Many relations
- POG 2.5 Released
- POG 2.5 beta
- Automatic table alignment
- New version: 2.1.2 released
- RSS should work well now
- RSS feed glitches
- What's new in 2.1.0
- PHP Objects 2.1.0 (preview)
- PHP Object relations FAQ
- PHP Object Relations
- Searching base64 encoded text
- How to debug POG-generated objects
- POG UI Tips
- Featuring Of Interest links
- PHP CRUD
- POG 2.0.1: A better code generator
- A look at the POG SOAP API
- POG 2.0.0 released
- Coming soon: Generate parent-child objects
- Generated abstraction v/s dynamic abstraction
- Zend Framework preview
- Coming soon: Generate Objects through SOAP
- Easily save images and files to a database
- PHP, Paypal & POG
- Five advanced Code Generator tips
- PHP Pagination using generated objects
- PHP Code Generator benchmarks
- Representing database objects using an AJAX Tree interface
- Using SETUP in a production environment
- Description of the generated object package
- Introducing PHP Object Generator version 1.6
- Using AJAX and PHP Object Generator
- When to use Object->SaveNew()
- Generating PHP objects in 2006
- Happy Holidays
- A short video of the POG Setup process
- A sneak peek at POG 1.6
- POG Tip: Field limits
- Previous versions.
- Searching the blog and tutorials sections
- Generating code with "Other" SQL data types
- Five general POG tips
- POG source code locations
- Microsoft SQL 2005 Express Edition
- Impatiently awaiting PHP 5.1 and PDO
- Php Object Generator goes open source
- POG generates PDO compatible code
- Oracle to offer free database
- POG Google group
- Database Wrappers and POG
- Revisions
- The generator blog
- An explanation of the 'Escape' function.
- Mirror, mirror
- Using POG to solve real world problems
- A php object-relational database tool
- A simple and flexible Object Oriented approach to PHP
Back to the Code Generator
The POG Google group
The POG tutorials/code samples
The POG mirror site
Generating PHP objects in 2006
written 1527 days agoWe’d like to start off this first post of 2006 by saying thank-you to everyone who’s used POG and still use it on a regular basis for their PHP projects. The POG project has been more successful than we could have ever hoped for and we intend to work even harder this year.
With over 200, 000 PHP objects generated since the project was launched 3 months ago, we’re getting the message that PHP developers embrace the idea of code generation, and this is highly motivating for us.
Things coming up in 2006:
The main event coming up this week is the release of POG 1.6. The PHP tutorials and history log have already been updated for this new version. We’re just ironing out some kinks before it’s released. POG 1.6 takes the code generating experience one step further by providing a Setup file that automates tasks the developer would normally perform after the objects are generated. Tasks such as database table-creation, unit testing and scaffolding are provided to the developer. You can even watch a 4-minute preview video of this process if you like.
In our ambitious goal to be the best PHP code generator, we listen to opinions and comments from all PHP developers, and one of our goals for 2006 is getting more feedback and increased communication with you. The POG Google group has been created for this purpose, and we’ll be spending more time there and we hope you do too.
After going back and re-reading the first-post posted on this blog, we realized that the goals we set for ourselves in the beginning are still as relevant, if not more. POG’s goal is still to generate code that takes away the boring and redundant portion of programming with PHP and databases. As we work to implement new features this year, we’ll always keep in mind our original intention of being first-and-foremost, a PHP code generator; Not a PHP framework. The simple reason for this is that we feel there are many good PHP frameworks out there but not many good code generators.
In brief, we’re very excited about PHP and web application development in 2006 and we hope more PHP developers out-there hear about us and give POG a try.

This is a weblog about the Php Object Generator (POG) project, OO PHP, databases and Php code generators in general.
Php Object Generator, (POG) is an open source PHP code generator which automatically generates clean & tested Object Oriented code for your PHP4/PHP5 application.
Subscribe to our RSS feed
Feedback, Feature Requests, Bugs to:
The POG Google group
Send us a Hello through email
Instead of Get{objectname}List(), the CRUD method is now simply called by GetList(). For example:
Old Way (1.5)
$book->GetBookList(“bookid”, ”>”, 0);
New Way (1.6)
$book->GetList(array(array(“bookid”, ”>”, 0)));
This is the only anomaly I noticed in the documentation/tutorials and it shouldn’t be relevant once the main page is updated with 1.6.
Just thought I’d share.
— Jake Jan 5, 03:05 AM #