I am very proud to announce the release of Flextrine 0.9. This is a major release with changes across the board; much of the codebase has been improved, optimized and cleaned up, and a host of new features have been added. Flextrine has also moved from Google Code to Github, and the documentation has been [...]
After a few months break I have started work on Flextrine once again. During the break I have been working a lot with Doctrine 2 in pure PHP, and have learnt a lot of things to do with both the internals of Doctrine and its practical application in a real world application. Now that Doctrine [...]
The Flextrine releases are flying out hard and fast! This release gives another batch of bug fixes, enhanced functionality in various areas, better error reporting and lots more API documentation. Flash on the Beach is just around the corner, and I’m hoping that my presentation will bring a new batch of users into the Flextrine [...]
After much soul searching I eventually decided to put in the time to convert Flextrine from using AMFPHP to ZendAMF. There were a few reasons I decided to make this move, but eventually it boiled down to the fact that quite a few people had asked me to do so. In retrospect it was certainly [...]
Another released of Flextrine! Since 0.6.1 there have been a number of changes to the Flextrine core. The entity merging algorithm has been altered to take better advantage of Doctrine 2 merging giving us a hefty performance boost (thanks for Benjamin Eberlei at Doctrine for pointing this out), the requirement to use $_explicitType in Doctrine [...]
Android 2.2 got rolled out for my HTC Desire this afternoon, and I am both pleased and surprised to report that Flextrine runs on it without any problems!
Introduction Setting up the server Creating the entities Creating the database schema Loading the entities Creating new entities Deleting entities Updating entities Conclusion
I hope that this tutorial has given you some insight into the power of Flextrine. In fact there are many areas of Flextrine that we [...]
Introduction Setting up the server Creating the entities Creating the database schema Loading the entities Creating new entities Deleting entities Updating entities Conclusion
Once an entity is in an EntityRepository (either because it was loaded from the database or it was persisted) it is known as a MANAGED [...]
Introduction Setting up the server Creating the entities Creating the database schema Loading the entities Creating new entities Deleting entities Updating entities Conclusion
Deleting entities is very simple. Update the delete button MXML tag to call onDeleteClick() when clicked, and to only be enabled if there is a [...]
Introduction Setting up the server Creating the entities Creating the database schema Loading the entities Creating new entities Deleting entities Updating entities Conclusion
To add new entities to the repository we use the EntityManager.persist() method. Let’s link up the Add [...]