Index: phpdoc/en/functions/ingres_ii.xml
diff -u phpdoc/en/functions/ingres_ii.xml:1.8 phpdoc/en/functions/ingres_ii.xml:1.9
--- phpdoc/en/functions/ingres_ii.xml:1.8 Mon Aug 27 10:04:08 2001
+++ phpdoc/en/functions/ingres_ii.xml Mon Sep 3 00:01:53 2001
@@ -1,5 +1,5 @@
-
+
Ingres II functionsIngres II
@@ -60,7 +60,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
Returns a Ingres II link resource on success, or &false; on failure.
@@ -138,7 +138,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
Returns a Ingres II link resource on success, or &false; on failure.
@@ -146,7 +146,7 @@
See ingres_connect for parameters details and
examples. There are only 2 differences between
ingres_pconnect and
- ingres_connect :
+ ingres_connect :
First, when connecting, the function will first try to find a
(persistent) link that's already opened with the same parameters.
If one is found, an identifier for it will be returned instead of
@@ -179,7 +179,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
Returns &true; on success, or &false; on failure.
@@ -219,7 +219,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
Returns &true; on success, or &false; on failure.
@@ -258,13 +258,13 @@
prepare to commit
- rollback (see ingres_rollback).
+ rollback (see ingres_rollback).
savepoint
- set autocommit (see ingres_autocommit).
+ set autocommit (see ingres_autocommit).
@@ -276,7 +276,7 @@
ingres_query example
-<?php
+<?php
ingres_connect ($database, $user, $password);
ingres_query ("select * from table");
@@ -317,7 +317,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
For delete, insert or update queries,
ingres_num_rows returns the number of rows
@@ -370,7 +370,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_num_fields returns the number of fields
in the results returned by the Ingres server after a call to
@@ -381,7 +381,7 @@
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -404,7 +404,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_field_name returns the name of a field
in a query result, or &false; on failure.
@@ -419,7 +419,7 @@
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -442,7 +442,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_field_type returns the type of a field
in a query result, or &false; on failure.
@@ -464,7 +464,7 @@
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -487,7 +487,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_field_nullable returns &true; if the field
can be set to the &null; value and &false; if it can't.
@@ -502,7 +502,7 @@
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -525,7 +525,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_field_length returns the length of a field.
This is the number of bytes used by the server to store the field.
@@ -534,14 +534,14 @@
index is the number of the field and must be
between 1 and the value given by
- ingres_num_fields.
+ ingres_num_fields.
See also
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -564,7 +564,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_field_precision returns the precision of
a field. This value is used only for decimal, float and money SQL data
@@ -574,14 +574,14 @@
index is the number of the field and must be
between 1 and the value given by
- ingres_num_fields.
+ ingres_num_fields.
See also
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -604,7 +604,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_field_scale returns the scale of a field.
This value is used only for the decimal SQL data type. For detailed
@@ -613,14 +613,14 @@
index is the number of the field and must be
between 1 and the value given by
- ingres_num_fields.
+ ingres_num_fields.
See also
ingres_query,
ingres_fetch_array,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -643,7 +643,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_fetch_array Returns an array that corresponds
to the fetched row, or &false; if there are no more rows.
@@ -682,7 +682,7 @@
ingres_fetch_array example
-<?php
+<?php
ingres_connect ($database, $user, $password);
ingres_query ("select * from table");
@@ -702,7 +702,7 @@
ingres_num_fields,
ingres_field_name,
ingres_fetch_object and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -722,7 +722,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_fetch_row returns an array that corresponds
to the fetched row, or &false; if there are no more rows. Each result
@@ -737,7 +737,7 @@
ingres_fetch_row example
-<?php
+<?php
ingres_connect ($database, $user, $password);
ingres_query ("select * from table");
@@ -777,12 +777,12 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_fetch_object Returns an object that
corresponds to the fetched row, or &false; if there are no more rows.
-
+
This function is similar to
ingres_fetch_array, with one difference - an
object is returned, instead of an array. Indirectly, that means
@@ -804,7 +804,7 @@
ingres_fetch_object example
-<?php
+<?php
ingres_connect ($database, $user, $password);
ingres_query ("select * from table");
while ($row = ingres_fetch_object()) {
@@ -821,7 +821,7 @@
ingres_num_fields,
ingres_field_name,
ingres_fetch_array and
- ingres_fetch_row.
+ ingres_fetch_row.
@@ -841,10 +841,10 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_rollback rolls back the currently open
- transaction, actualy canceling all changes made to the database
+ transaction, actually canceling all changes made to the database
during the transaction.
@@ -875,7 +875,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_commit commits the currently open
transaction, making all changes made to the database permanent.
@@ -913,7 +913,7 @@
- &warn.experimental.func;
+ &warn.experimental.func;
ingres_autocommit is called before opening a
transaction (before the first call to ingres_query
@@ -953,4 +953,3 @@
sgml-local-ecat-files:nil
End:
-->
-