cvs: peardoc /en/package/database/mdb2 intro-portability.xml
[email protected] ("Ken Guest")
| Newsgroups | php.pear.doc |
|---|---|
| Message-ID | <cvskguest1199468908@cvsserver> |
kguest Fri Jan 4 17:48:28 2008 UTC
Modified files:
/peardoc/en/package/database/mdb2 intro-portability.xml
Log:
some minor corrections regarding grammar and readability
http://cvs.php.net/viewvc.cgi/peardoc/en/package/database/mdb2/intro-portability.xml?r1=1.14&r2=1.15&diff_format=u
Index: peardoc/en/package/database/mdb2/intro-portability.xml
diff -u peardoc/en/package/database/mdb2/intro-portability.xml:1.14 peardoc/en/package/database/mdb2/intro-portability.xml:1.15
--- peardoc/en/package/database/mdb2/intro-portability.xml:1.14 Wed Apr 18 21:45:21 2007
+++ peardoc/en/package/database/mdb2/intro-portability.xml Fri Jan 4 17:48:28 2008
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
<refentry id="package.database.mdb2.intro-portability">
<refnamediv>
@@ -15,7 +15,7 @@
some lowercase them, while others leave them alone. These quirks
make it difficult to port your scripts over to another server type.
PEAR MDB2 strives to overcome these differences so your program can
- switch between DBMS's without any changes.
+ switch between DBMSs without any changes.
</para>
<para>
You control which portability modes are enabled by using
@@ -61,9 +61,9 @@
</para>
<para>
Force reporting the number of rows deleted.
- Some DBMS's don't count the number of rows deleted when performing
+ Some DBMSs don't count the number of rows deleted when performing
simple <userinput>DELETE FROM tablename</userinput> queries. This mode
- tricks such DBMS's into telling the count by adding
+ tricks such DBMSs into telling the count by adding
<userinput>WHERE 1=1</userinput> to the end of <command>DELETE</command>
queries.
</para>
@@ -75,7 +75,7 @@
<para>
Convert empty strings values to null in data in and output.
Needed because Oracle considers empty strings to be null,
- while most other DBMS's know the difference between empty and null.
+ while most other DBMSs know the difference between empty and null.
</para>
</listitem>
@@ -85,7 +85,7 @@
</para>
<para>
Makes certain error messages in certain drivers compatible
- with those from other DBMS's
+ with those from other DBMSs
</para>
<para>