2005-11-10 08:06:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2017-09-25 12:37:10 +05:30
|
|
|
@version v5.20.9 21-Dec-2016
|
2015-12-08 11:52:40 +08:00
|
|
|
@copyright (c) 2000-2013 John Lim (jlim#natsoft.com). All rights reserved.
|
|
|
|
@copyright (c) 2014 Damien Regad, Mark Newnham and the ADOdb community
|
2014-09-26 10:31:39 +08:00
|
|
|
Released under both BSD license and Lesser GPL library license.
|
|
|
|
Whenever there is any discrepancy between the two licenses,
|
2005-11-10 08:06:07 +00:00
|
|
|
the BSD license will take precedence.
|
2014-09-26 10:31:39 +08:00
|
|
|
|
2005-11-10 08:06:07 +00:00
|
|
|
Set tabs to 4.
|
2014-09-26 10:31:39 +08:00
|
|
|
|
|
|
|
Declares the ADODB Base Class for PHP5 "ADODB_BASE_RS", and supports iteration with
|
2005-11-10 08:06:07 +00:00
|
|
|
the ADODB_Iterator class.
|
2014-09-26 10:31:39 +08:00
|
|
|
|
2005-11-10 08:06:07 +00:00
|
|
|
$rs = $db->Execute("select * from adoxyz");
|
|
|
|
foreach($rs as $k => $v) {
|
|
|
|
echo $k; print_r($v); echo "<br>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-26 10:31:39 +08:00
|
|
|
Iterator code based on http://cvs.php.net/cvs.php/php-src/ext/spl/examples/cachingiterator.inc?login=2
|
2005-11-10 08:06:07 +00:00
|
|
|
|
2006-08-21 06:54:00 +00:00
|
|
|
|
2014-09-26 10:31:39 +08:00
|
|
|
Moved to adodb.inc.php to improve performance.
|
|
|
|
*/
|