vrana Mon Mar 6 23:54:08 2006 UTC
Modified files:
/phpdoc/en/reference/maxdb/functions maxdb-fetch-object.xml
maxdb-fetch-row.xml
maxdb-stmt-data-seek.xml
Log:
Typos in examples (bug #36617)
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/maxdb/functions/maxdb-fetch-object.xml?r1=1.3&r2=1.4&diff_format=u
Index: phpdoc/en/reference/maxdb/functions/maxdb-fetch-object.xml
diff -u phpdoc/en/reference/maxdb/functions/maxdb-fetch-object.xml:1.3
phpdoc/en/reference/maxdb/functions/maxdb-fetch-object.xml:1.4
--- phpdoc/en/reference/maxdb/functions/maxdb-fetch-object.xml:1.3 Thu Jun
23 16:53:23 2005
+++ phpdoc/en/reference/maxdb/functions/maxdb-fetch-object.xml Mon Mar 6
23:54:08 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<refentry id="function.maxdb-fetch-object">
<refnamediv>
<refname>maxdb_fetch_object</refname>
@@ -94,7 +94,7 @@
if ($result = maxdb_query($link, $query)) {
- /* fetch associative array */
+ /* fetch object array */
while ($obj = maxdb_fetch_object($result)) {
printf ("%s (%s)\n", $obj->NAME, $obj->STATE);
}
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/maxdb/functions/maxdb-fetch-row.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/maxdb/functions/maxdb-fetch-row.xml
diff -u phpdoc/en/reference/maxdb/functions/maxdb-fetch-row.xml:1.2
phpdoc/en/reference/maxdb/functions/maxdb-fetch-row.xml:1.3
--- phpdoc/en/reference/maxdb/functions/maxdb-fetch-row.xml:1.2 Tue Mar 8
16:39:06 2005
+++ phpdoc/en/reference/maxdb/functions/maxdb-fetch-row.xml Mon Mar 6
23:54:08 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.maxdb-fetch-row">
<refnamediv>
<refname>maxdb_fetch_row</refname>
@@ -68,7 +68,7 @@
if ($result = $maxdb->query($query)) {
- /* fetch object array */
+ /* fetch enumerated array */
while ($row = $result->fetch_row()) {
printf ("%s (%s)\n", $row[0], $row[1]);
}
@@ -100,7 +100,7 @@
if ($result = maxdb_query($link, $query)) {
- /* fetch associative array */
+ /* fetch enumerated array */
while ($row = maxdb_fetch_row($result)) {
printf ("%s (%s)\n", $row[0], $row[1]);
}
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/maxdb/functions/maxdb-stmt-data-seek.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc/en/reference/maxdb/functions/maxdb-stmt-data-seek.xml
diff -u phpdoc/en/reference/maxdb/functions/maxdb-stmt-data-seek.xml:1.2
phpdoc/en/reference/maxdb/functions/maxdb-stmt-data-seek.xml:1.3
--- phpdoc/en/reference/maxdb/functions/maxdb-stmt-data-seek.xml:1.2 Tue Mar
8 16:39:06 2005
+++ phpdoc/en/reference/maxdb/functions/maxdb-stmt-data-seek.xml Mon Mar
6 23:54:08 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<refentry id="function.maxdb-stmt-data-seek">
<refnamediv>
<refname>maxdb_stmt_data_seek</refname>
@@ -114,7 +114,7 @@
/* store result */
maxdb_stmt_store_result($stmt);
- /* seek to row no. 400 */
+ /* seek to row no. 5 */
maxdb_stmt_data_seek($stmt, 5);
/* fetch values */