Skip to content
Snippets Groups Projects
adodb-iterator.inc.php 780 B
Newer Older
Prasad's avatar
Prasad committed
<?php

/*
Satish's avatar
Satish committed
  @version   v5.20.9  21-Dec-2016
  @copyright (c) 2000-2013 John Lim (jlim#natsoft.com). All rights reserved.
  @copyright (c) 2014      Damien Regad, Mark Newnham and the ADOdb community
  Released under both BSD license and Lesser GPL library license.
  Whenever there is any discrepancy between the two licenses,
Prasad's avatar
Prasad committed
  the BSD license will take precedence.
Prasad's avatar
Prasad committed
  Set tabs to 4.
Satish's avatar
Satish committed

  Declares the ADODB Base Class for PHP5 "ADODB_BASE_RS", and supports iteration with
Prasad's avatar
Prasad committed
  the ADODB_Iterator class.
Prasad's avatar
Prasad committed
  		$rs = $db->Execute("select * from adoxyz");
		foreach($rs as $k => $v) {
			echo $k; print_r($v); echo "<br>";
		}


Satish's avatar
Satish committed
	Iterator code based on http://cvs.php.net/cvs.php/php-src/ext/spl/examples/cachingiterator.inc?login=2
Satish's avatar
Satish committed
	Moved to adodb.inc.php to improve performance.
 */