<?php /** * The arrayf adapter is a filtered mySQL adapter riggged * to only transmit certain column names. Must be typed manually. * * @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 plainrecordsetAdapter extends RecordSetAdapter { /** * Constructor method for the adapter. This constructor implements the setting of the * 3 required properties for the object. * * @param resource $d The datasource resource */ function plainrecordsetAdapter($d) { $d = $d->data; parent::RecordSetAdapter($d); if(count($d) > 0) { $columns = array_keys($d[0]); } $this->columns = $columns; foreach($d as $key => $val) { $row = array(); foreach($columns as $key2 => $val2) { $row[] = $val[$val2]; } $this->rows[] = $row; } } } ?>