mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixed bug: #12966. Also added missing spaces.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@56036 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3a09637b00
commit
30d0649178
1 changed files with 21 additions and 21 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<reference id="ref.ingres">
|
||||
<title>Ingres II functions</title>
|
||||
<titleabbrev>Ingres II</titleabbrev>
|
||||
|
@ -173,7 +173,7 @@
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool<function>ingres_close</function></funcdef>
|
||||
<funcdef>bool <function>ingres_close</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -210,7 +210,7 @@
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool<function>ingres_query</function></funcdef>
|
||||
<funcdef>bool <function>ingres_query</function></funcdef>
|
||||
<paramdef>string
|
||||
<parameter>query</parameter>
|
||||
</paramdef>
|
||||
|
@ -311,7 +311,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int<function>ingres_num_rows</function></funcdef>
|
||||
<funcdef>int <function>ingres_num_rows</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -364,7 +364,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int<function>ingres_num_fields</function></funcdef>
|
||||
<funcdef>int <function>ingres_num_fields</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -395,7 +395,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>string<function>ingres_field_name</function></funcdef>
|
||||
<funcdef>string <function>ingres_field_name</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter>index</parameter>
|
||||
</paramdef>
|
||||
|
@ -433,7 +433,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>string<function>ingres_field_type</function></funcdef>
|
||||
<funcdef>string <function>ingres_field_type</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter>index</parameter>
|
||||
</paramdef>
|
||||
|
@ -478,7 +478,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool<function>ingres_field_nullable</function></funcdef>
|
||||
<funcdef>bool <function>ingres_field_nullable</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter>index</parameter>
|
||||
</paramdef>
|
||||
|
@ -516,7 +516,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int<function>ingres_field_length</function></funcdef>
|
||||
<funcdef>int <function>ingres_field_length</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter>index</parameter>
|
||||
</paramdef>
|
||||
|
@ -555,7 +555,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int<function>ingres_field_precision</function></funcdef>
|
||||
<funcdef>int <function>ingres_field_precision</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter>index</parameter>
|
||||
</paramdef>
|
||||
|
@ -595,7 +595,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>int<function>ingres_field_scale</function></funcdef>
|
||||
<funcdef>int <function>ingres_field_scale</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter>index</parameter>
|
||||
</paramdef>
|
||||
|
@ -634,7 +634,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>array<function>ingres_fetch_array</function></funcdef>
|
||||
<funcdef>array <function>ingres_fetch_array</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>result_type</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -669,8 +669,8 @@ $bar = $result["bar"];
|
|||
</informalexample>
|
||||
</para>
|
||||
<para>
|
||||
<parameter>result_type</parameter> can be II_NUM for enumerated array,
|
||||
II_ASSOC for associative array, or II_BOTH (default).
|
||||
<parameter>result_type</parameter> can be INGRES_NUM for enumerated array,
|
||||
INGRES_ASSOC for associative array, or INGRES_BOTH (default).
|
||||
</para>
|
||||
<para>
|
||||
Speed-wise, the function is identical to
|
||||
|
@ -716,7 +716,7 @@ while ($row = ingres_fetch_array()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>array<function>ingres_fetch_row</function></funcdef>
|
||||
<funcdef>array <function>ingres_fetch_row</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -768,7 +768,7 @@ while ($row = ingres_fetch_row()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>object<function>ingres_fetch_object</function></funcdef>
|
||||
<funcdef>object <function>ingres_fetch_object</function></funcdef>
|
||||
<paramdef>int
|
||||
<parameter><optional>result_type</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -791,8 +791,8 @@ while ($row = ingres_fetch_row()) {
|
|||
</para>
|
||||
<para>
|
||||
The optional argument <parameter>result_type</parameter> is a
|
||||
constant and can take the following values: II_ASSOC,
|
||||
II_NUM, and II_BOTH.
|
||||
constant and can take the following values: INGRES_ASSOC,
|
||||
INGRES_NUM, and INGRES_BOTH.
|
||||
</para>
|
||||
<para>
|
||||
Speed-wise, the function is identical to
|
||||
|
@ -835,7 +835,7 @@ while ($row = ingres_fetch_object()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool<function>ingres_rollback</function></funcdef>
|
||||
<funcdef>bool <function>ingres_rollback</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -869,7 +869,7 @@ while ($row = ingres_fetch_object()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool<function>ingres_commit</function></funcdef>
|
||||
<funcdef>bool <function>ingres_commit</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
@ -907,7 +907,7 @@ while ($row = ingres_fetch_object()) {
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool<function>ingres_autocommit</function></funcdef>
|
||||
<funcdef>bool <function>ingres_autocommit</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter><optional>link</optional></parameter>
|
||||
</paramdef>
|
||||
|
|
Loading…
Reference in a new issue