<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><image><url>http://www.zftutorials.com/templates/Default/img/logo.gif</url><title>eSyndiCat Directory 2.2 Zend Framework Tutorial</title><link>http://www.zftutorials.com/</link></image><title>Zend DB</title><description></description><link>http://www.zftutorials.com/zend-db/</link><item><title>Generic Data Admin Crontroller</title><link>http://www.zftutorials.com/zend-db/Generic-Data-Admin-Crontroller-l277.html</link><description>Zend framework provides powerful data abastraction  and here are a few controller methods that work for any data model. A foundation for scaffolding, CRUD , BREAD development or AJAX request handling.</description></item><item><title>Zend Framework hierarchical Zend_Db_Table extension</title><link>http://www.zftutorials.com/zend-db/Zend-Framework-hierarchical-Zend-Db-Table-extension-l271.html</link><description>Hierarchical zend_db_table extension implements functions for tables with recursive parent_id auto reference for page or category unlimited levels, tree based navigation.</description></item><item><title>Using the Zend Framework with Multiple Databases</title><link>http://www.zftutorials.com/zend-db/Using-the-Zend-Framework-with-Multiple-Databases-l235.html</link><description>Zend_Db_Table does a great job of abstracting database tables, but it&#039;s really intended to hit one database per application.  This tutorial demonstrates a method of using as many databases as you want by simply specifying them in  your config file.</description></item><item><title>Using ADODB with Zend_Auth and Zend_Auth_Adapter</title><link>http://www.zftutorials.com/zend-db/Using-ADODB-with-Zend-Auth-and-Zend-Auth-Adapter-l230.html</link><description>Since I prefer ADODB over Zend Framework&#039;s own Zend_DB, I had a small problem: How to use it with Zend_Auth to authenticate the user?
Good thing Zend employs smart people: they use an adapter to control the database access in the Zend_Auth class, called Zend_Auth_Adapter. You can define your own authentication adapter quite easily by creating a class which implements the Zend_Auth_Adapter_Interface interface class.</description></item><item><title>Zend_Db Love</title><link>http://www.zftutorials.com/zend-db/Zend-Db-Love-l227.html</link><description>I’m starting to get hooked on the Zend Framework’s abstraction to the PDO</description></item><item><title>Zend Framework and Custom Row Classes</title><link>http://www.zftutorials.com/zend-db/Zend-Framework-and-Custom-Row-Classes-l225.html</link><description>Today I was toying around with new code architecture. Previously, how I might have implemented a Model would have been something similar to this:</description></item><item><title>Extra fields for Zend_Db_Table</title><link>http://www.zftutorials.com/zend-db/Extra-fields-for-Zend-Db-Table-l192.html</link><description>Zend_Db_Table is a very, VERY handy class for working with databases. It has come up in numerous posts on this blog. But I’ve always felt that for a complete model implementation there was something missing.</description></item><item><title>Modified fields for Zend_Db_Table</title><link>http://www.zftutorials.com/zend-db/Modified-fields-for-Zend-Db-Table-l191.html</link><description>Earlier today, I wrote a little extension to Zend_Db_Table that allows for “custom” fields to be added to it’s rows. When it was done some other ideas came floating up. Why wouldn’t I make my life even easier, by creating fields that don’t output their values directly.</description></item><item><title>Extra fields for Zend_Db_Table</title><link>http://www.zftutorials.com/zend-db/Extra-fields-for-Zend-Db-Table-l182.html</link><description>I&#039;m taking a quick look at adding fields that aren&#039;t in the table, but may be handy in your application. Like adding a field &quot;name&quot; that combines both first and last name, without having to change your database or write too much code. Quick, dirty, but extremely handy.</description></item><item><title>Zend Framework Programmer&#039;s Reference Guide - Zend_Db</title><link>http://www.zftutorials.com/zend-db/Zend-Framework-Programmer-s-Reference-Guide-Zend-Db-l87.html</link><description>Zend_Db_Adapter is the database API abstraction layer for the Zend Framework. Based on PDO, you can use Zend_Db_Adapter to connect to and work with any of the supported SQL database systems using the same API. These include Microsoft SQL Server, MySQL, PostgreSQL, SQLite, and others.</description></item><item><title>Using Zend Framework Without PDO</title><link>http://www.zftutorials.com/zend-db/Using-Zend-Framework-Without-PDO-l72.html</link><description>This is a very quick tutorial on how to allow developers to develop using the Zend Framework without having to or being able to install PDO on their servers.
I have to warn you though, this is not an official extension of the Zend Framework just yet.</description></item><item><title>Zdbform: Simple database admin forms with the Zend Framework</title><link>http://www.zftutorials.com/zend-db/Zdbform-Simple-database-admin-forms-with-the-Zend-Framework-l58.html</link><description>I&#039;ve put together a database admin application using the database functionality provided by the Zend Framework. Basically, it&#039;s a generic set of classes that allows people to quickly add, edit, delete, and view data in a database table. The nice thing is that this uses the Zend_DB_Table classes, so it should presumably work with just about any database supported by the Zend Framework. I&#039;ve tried this on mySQL and sqlite, and it worked just fine on both. There are some limitations of course. Right now this will only work on tables that have auto-increment primary keys. I don&#039;t quite know how this would work with databases that don&#039;t have auto-increment such as Oracle - maybe this could have support for defining the sequence that should be used when inserting data. This is a PHP5 only class due to it&#039;s reliance on the Zend Framework.</description></item><item><title>Programming a data layer classes</title><link>http://www.zftutorials.com/zend-db/Programming-a-data-layer-classes-l46.html</link><description>This article contains a few examples on how to create and use data layer classes that was created by extending the Zend_Db_Table class from Zend Framework.</description></item><item><title>Work with XML Data in the Zend FrameworkWork with XML Data in the Zend Framework</title><link>http://www.zftutorials.com/zend-db/Work-with-XML-Data-in-the-Zend-FrameworkWork-with-XML-Data-in-the-Zend-Framework-l25.html</link><description>One of the incubator projects in the Zend Framework is Zend_Db_Xml. Zend_Db_Xml, also known as the XML Content Store (XCS), allows web applications that use XML data to easily update, save, and otherwise manage this data. In this article I will introduce the XCS persistence API and discuss an implementation using IBMÂ’s DB2 9 database with its pureXML technology. Finally, IÂ’ll discuss a sample social networking application to show how easy and fun it is to develop XML-centric applications using the XCS.</description></item><item><title>Zend Framework Hidden Gems: Zend_Db</title><link>http://www.zftutorials.com/zend-db/Zend-Framework-Hidden-Gems-Zend-Db-l3.html</link><description>Welcome back for another edition of Zend Framework Hidden Gems. Finally we start on the weird and wonderful world of database abstraction with PHP5, PDO and Zend.</description></item></channel></rss>