Newer
Older
umgamf / core / shared / adapters / doctrineAdapter.php
@reddawg reddawg on 11 Jun 2008 952 bytes Sync
<?php
/**
 * This Adapter translates the specific Database type links to the data and pulls the data into very
 * specific local variables to later be retrieved by the gateway and returned to the client.
 *
 * pdoAdapter is a contribution of Andrea Giammarchi
 *
 * Now using fast serialization
 * 
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @copyright (c) 2003 amfphp.org
 * @package flashservices
 * @subpackage adapters
 * @version $Id$
 */

require_once(AMFPHP_BASE . "shared/adapters/RecordSetAdapter.php");

class doctrineAdapter extends RecordSetAdapter 
{
	function doctrineAdapter($d) {
		parent::RecordSetAdapter($d);
		
		if(count($d) > 0)
		{
			$firstRow = true;
			foreach($d as $row)
			{
				$this->rows[] = array_values($row->toArray());
				if($firstRow)
				{
					$this->columns = array_keys($row->toArray());
					$firstRow = false;
				}
			}
		}
	}
}
?>