| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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.
- *
- * This version of the postgreSQL adapter uses fast serialization
- *
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @copyright (c) 2003 amfphp.org
- * @package flashservices
- * @subpackage adapters
- * @version $Id: pgsqlAdapter.php,v 1.2 2005/07/22 10:58:09 pmineault Exp $
- */
- /**
- * Required classes
- */
- require_once(AMFPHP_BASE . "shared/adapters/RecordSetAdapter.php");
- class pgsqlAdapter 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 pgsqlAdapter($d) {
- parent::RecordSetAdapter($d);
-
- $fieldcount = pg_num_fields($d);
-
- for($i = 0; $i < $fieldcount; $i++) {
- $this->columns[] = pg_field_name($d, $i);
- }
-
- if(pg_num_rows($d) > 0)
- {
- pg_result_seek($d, 0);
- while($line = pg_fetch_row($d)) {
- $this->rows[] = $line;
- }
- }
- }
- }
- ?>
|