Skip to content

Commit 3c1bec9

Browse files
authored
Rename PDO driver titleabrevs (#4349)
1 parent 90787fd commit 3c1bec9

File tree

11 files changed

+53
-53
lines changed

11 files changed

+53
-53
lines changed

reference/pdo_cubrid/reference.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<reference xml:id="ref.pdo-cubrid" xmlns="http://docbook.org/ns/docbook"><?phpdoc extension-membership="pecl" ?>
3-
<title>CUBRID Functions (PDO_CUBRID)</title>
4-
<titleabbrev>CUBRID (PDO)</titleabbrev>
3+
<title>CUBRID PDO Driver (PDO_CUBRID)</title>
4+
<titleabbrev>CUBRID PDO Driver</titleabbrev>
55
<partintro>
66

77
<section xml:id="pdo-cubrid.intro">&reftitle.intro;
@@ -64,7 +64,7 @@
6464

6565
<section>
6666
<title>Multiple SQL Statements</title>
67-
67+
6868
<simpara>
6969
PDO_CUBRID supports Multiple SQL statements.
7070
Multiple SQL statements are separated by semicolons (<literal>;</literal>).
@@ -168,9 +168,9 @@ fpassthru($result[0]);
168168
$conn_str ="cubrid:dbname=demodb;host=localhost;port=33000";
169169
$cubrid_pdo = new PDO($conn_str, 'dba', '');
170170
171-
$cubrid_pdo->exec("DROP TABLE if exists test_tbl");
171+
$cubrid_pdo->exec("DROP TABLE if exists test_tbl");
172172
$cubrid_pdo->exec("CREATE TABLE test_tbl (col_1 SET(VARCHAR))");
173-
173+
174174
$sql_stmt_insert = "INSERT INTO test_tbl VALUES (?);";
175175
$stmt = $cubrid_pdo->prepare($sql_stmt_insert);
176176
$data = array("abc","def","ghi");
@@ -190,9 +190,9 @@ var_Dump($ret);
190190
$conn_str ="cubrid:dbname=demodb;host=localhost;port=33000";
191191
$cubrid_pdo = new PDO($conn_str, 'dba', '');
192192
193-
$cubrid_pdo->exec("DROP TABLE if exists test_tbl");
193+
$cubrid_pdo->exec("DROP TABLE if exists test_tbl");
194194
$cubrid_pdo->exec("CREATE TABLE test_tbl (col_1 SET(int))");
195-
195+
196196
$sql_stmt_insert = "INSERT INTO test_tbl VALUES (?);";
197197
$stmt = $cubrid_pdo->prepare($sql_stmt_insert);
198198
$data = array(1,2,3,4);

reference/pdo_dblib/reference.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<reference xml:id="ref.pdo-dblib" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
55
<?phpdoc extension-membership="bundledexternal" ?>
6-
<title>Microsoft SQL Server and Sybase Functions (PDO_DBLIB)</title>
7-
<titleabbrev>MS SQL Server (PDO)</titleabbrev>
6+
<title>Microsoft SQL Server and Sybase PDO Driver (PDO_DBLIB)</title>
7+
<titleabbrev>MS SQL Server PDO Driver</titleabbrev>
88
<partintro>
99

1010
<section xml:id="ref.pdo-dblib.intro">

reference/pdo_firebird/reference.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<reference xml:id="ref.pdo-firebird" xmlns="http://docbook.org/ns/docbook">
55
<?phpdoc extension-membership="bundledexternal" ?>
6-
<title>Firebird Functions (PDO_FIREBIRD)</title>
7-
<titleabbrev>Firebird (PDO)</titleabbrev>
6+
<title>Firebird PDO Driver (PDO_FIREBIRD)</title>
7+
<titleabbrev>Firebird PDO Driver</titleabbrev>
88
<partintro>
99

1010
<section xml:id="ref.pdo-firebird.intro">

reference/pdo_ibm/reference.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<reference xml:id="ref.pdo-ibm" xmlns="http://docbook.org/ns/docbook">
33
<?phpdoc extension-membership="pecl" ?>
4-
<title>IBM Functions (PDO_IBM)</title>
5-
<titleabbrev>IBM (PDO)</titleabbrev>
4+
<title>IBM PDO Driver (PDO_IBM)</title>
5+
<titleabbrev>IBM PDO Driver</titleabbrev>
66
<partintro>
77

88
<section xml:id="pdo-ibm.intro">
@@ -29,8 +29,8 @@
2929
<refsect1 role="description">
3030
&reftitle.description;
3131
<para>
32-
The PDO_IBM Data Source Name (DSN) is based on the IBM CLI DSN. The major
33-
components of the PDO_IBM DSN are:
32+
The PDO_IBM Data Source Name (DSN) is based on the IBM CLI DSN. The major
33+
components of the PDO_IBM DSN are:
3434
<variablelist>
3535
<varlistentry>
3636
<term>DSN prefix</term>
@@ -48,20 +48,20 @@
4848
<itemizedlist>
4949
<listitem>
5050
<para>
51-
a) Data source setup using <filename>db2cli.ini</filename>
51+
a) Data source setup using <filename>db2cli.ini</filename>
5252
or <filename>odbc.ini</filename>
5353
</para>
5454
</listitem>
5555
<listitem>
5656
<para>
57-
b) Catalogued database name i.e. database alias in the DB2 client
57+
b) Catalogued database name i.e. database alias in the DB2 client
5858
catalog
5959
</para>
6060
</listitem>
6161
<listitem>
6262
<para>
63-
c) Complete connection string in the following format:
64-
<code>DRIVER={IBM DB2 ODBC DRIVER};DATABASE=<parameter>database</parameter>;HOSTNAME=<parameter>hostname</parameter>;PORT=<parameter>port</parameter>;PROTOCOL=TCPIP;UID=<parameter>username</parameter>;PWD=<parameter>password</parameter>;</code>
63+
c) Complete connection string in the following format:
64+
<code>DRIVER={IBM DB2 ODBC DRIVER};DATABASE=<parameter>database</parameter>;HOSTNAME=<parameter>hostname</parameter>;PORT=<parameter>port</parameter>;PROTOCOL=TCPIP;UID=<parameter>username</parameter>;PWD=<parameter>password</parameter>;</code>
6565
where the parameters represent the following values:
6666
<variablelist>
6767
<varlistentry>
@@ -122,7 +122,7 @@
122122
<example>
123123
<title>PDO_IBM DSN example using <filename>db2cli.ini</filename></title>
124124
<para>
125-
The following example shows a PDO_IBM DSN for connecting to an DB2
125+
The following example shows a PDO_IBM DSN for connecting to an DB2
126126
database cataloged as DB2_9 in <filename>db2cli.ini</filename>:
127127
<programlisting><![CDATA[
128128
$db = new PDO("ibm:DSN=DB2_9", "", "");
@@ -138,17 +138,17 @@ Servicename=56789
138138
<example>
139139
<title>PDO_IBM DSN example using a connection string</title>
140140
<para>
141-
The following example shows a PDO_IBM DSN for connecting to an DB2
142-
database named <userinput>testdb</userinput> using the DB2 CLI
143-
connection string syntax.
141+
The following example shows a PDO_IBM DSN for connecting to an DB2
142+
database named <userinput>testdb</userinput> using the DB2 CLI
143+
connection string syntax.
144144
<programlisting><![CDATA[
145145
$db = new PDO("ibm:DRIVER={IBM DB2 ODBC DRIVER};DATABASE=testdb;" .
146146
"HOSTNAME=11.22.33.444;PORT=56789;PROTOCOL=TCPIP;", "testuser", "tespass");
147147
]]>
148148
</programlisting>
149149
</para>
150150
</example>
151-
151+
152152
</para>
153153
</refsect1>
154154
</refentry>

reference/pdo_informix/reference.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<reference xml:id="ref.pdo-informix" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
33
<?phpdoc extension-membership="pecl" ?>
4-
<title>Informix Functions (PDO_INFORMIX)</title>
5-
<titleabbrev>Informix (PDO)</titleabbrev>
4+
<title>Informix PDO Driver (PDO_INFORMIX)</title>
5+
<titleabbrev>Informix PDO Driver</titleabbrev>
66
<partintro>
77

88
<section xml:id="pdo-informix.intro">
@@ -108,7 +108,7 @@ $db = new PDO("informix:host=host.domain.com; service=9800;
108108
</programlisting>
109109
</para>
110110
</example>
111-
111+
112112
</para>
113113
</refsect1>
114114
</refentry>

reference/pdo_mysql/reference.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<reference xml:id="ref.pdo-mysql" xmlns="http://docbook.org/ns/docbook">
55
<?phpdoc extension-membership="bundledexternal" ?>
6-
<title>MySQL Functions (PDO_MYSQL)</title>
7-
<titleabbrev>MySQL (PDO)</titleabbrev>
6+
<title>MySQL PDO Driver (PDO_MYSQL)</title>
7+
<titleabbrev>MySQL PDO Driver</titleabbrev>
88
<partintro>
99

1010
<section xml:id="ref.pdo-mysql.intro">

reference/pdo_oci/reference.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
<reference xml:id="ref.pdo-oci" xmlns="http://docbook.org/ns/docbook">
55
<?phpdoc extension-membership="pecl" ?>
6-
<title>Oracle Functions (PDO_OCI)</title>
7-
<titleabbrev>Oracle (PDO)</titleabbrev>
6+
<title>Oracle PDO Driver (PDO_OCI)</title>
7+
<titleabbrev>Oracle PDO Driver</titleabbrev>
88
<partintro>
9-
9+
1010
&reference.pdo-oci.configure;
1111
&reference.pdo-oci.constants;
1212

reference/pdo_odbc/reference.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<reference xml:id="ref.pdo-odbc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
55
<?phpdoc extension-membership="bundledexternal" ?>
6-
<title>ODBC and DB2 Functions (PDO_ODBC)</title>
7-
<titleabbrev>ODBC and DB2 (PDO)</titleabbrev>
6+
<title>ODBC and DB2 PDO Driver (PDO_ODBC)</title>
7+
<titleabbrev>ODBC and DB2 PDO Driver</titleabbrev>
88
<partintro>
99

1010
<section xml:id="ref.pdo-odbc.intro">

reference/pdo_pgsql/reference.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<reference xml:id="ref.pdo-pgsql" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
55
<?phpdoc extension-membership="bundledexternal" ?>
6-
<title>PostgreSQL Functions (PDO_PGSQL)</title>
7-
<titleabbrev>PostgreSQL (PDO)</titleabbrev>
6+
<title>PostgreSQL PDO Driver (PDO_PGSQL)</title>
7+
<titleabbrev>PostgreSQL PDO Driver</titleabbrev>
88
<partintro>
99

1010
<section xml:id="ref.pdo-pgsql.intro">

reference/pdo_sqlite/reference.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
<reference xml:id="ref.pdo-sqlite" xmlns="http://docbook.org/ns/docbook">
55
<?phpdoc extension-membership="bundledexternal" ?>
6-
<title>SQLite Functions (PDO_SQLITE)</title>
7-
<titleabbrev>SQLite (PDO)</titleabbrev>
6+
<title>SQLite PDO Driver (PDO_SQLITE)</title>
7+
<titleabbrev>SQLite PDO Driver</titleabbrev>
88
<partintro>
99

1010
<section xml:id="ref.pdo-sqlite.intro">

0 commit comments

Comments
 (0)