[PHP-DOC] cvs: phpdoc /en/reference/pdo_mysql reference.xml

2007-01-16 Thread Mehdi Achour
didou   Tue Jan 16 19:43:17 2007 UTC

  Modified files:  
/phpdoc/en/reference/pdo_mysql  reference.xml 
  Log:
  Fix #40084: PDO supports MySQL 5.x
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/pdo_mysql/reference.xml?r1=1.8&r2=1.9&diff_format=u
Index: phpdoc/en/reference/pdo_mysql/reference.xml
diff -u phpdoc/en/reference/pdo_mysql/reference.xml:1.8 
phpdoc/en/reference/pdo_mysql/reference.xml:1.9
--- phpdoc/en/reference/pdo_mysql/reference.xml:1.8 Tue Dec 13 19:37:44 2005
+++ phpdoc/en/reference/pdo_mysql/reference.xml Tue Jan 16 19:43:17 2007
@@ -1,5 +1,5 @@
 
-
+
 
 
 
@@ -13,7 +13,7 @@
 
  PDO_MYSQL is a driver that implements the PHP
  Data Objects (PDO) interface
- to enable access from PHP to MySQL 3.x and 4.x databases.
+ to enable access from PHP to MySQL 3.x, 4.x and 5.x databases.
 
 
  PDO_MYSQL will take advantage of native prepared statement support


[PHP-DOC] cvs: phpdoc /en/reference/pdo_mysql reference.xml

2005-12-13 Thread Nuno Lopes
nlopess Tue Dec 13 19:37:44 2005 EDT

  Modified files:  
/phpdoc/en/reference/pdo_mysql  reference.xml 
  Log:
  add port and unix_socket options, per user note
  
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/pdo_mysql/reference.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/pdo_mysql/reference.xml
diff -u phpdoc/en/reference/pdo_mysql/reference.xml:1.7 
phpdoc/en/reference/pdo_mysql/reference.xml:1.8
--- phpdoc/en/reference/pdo_mysql/reference.xml:1.7 Sun Nov 27 06:51:40 2005
+++ phpdoc/en/reference/pdo_mysql/reference.xml Tue Dec 13 19:37:44 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
 
@@ -61,6 +61,14 @@

   
   
+   port
+   
+
+ The port number where the database server is listening.
+
+   
+  
+  
dbname

 
@@ -68,6 +76,15 @@
 

   
+  
+   unix_socket
+   
+
+ The MySQL unix socket (shouldn't be used with host
+ or port).
+
+   
+  
  
 

@@ -79,10 +96,18 @@
   
The following example shows a PDO_MYSQL DSN for connecting to
MySQL databases:
-   

+   More complete examples:
+   
+
+   
   
  
 


[PHP-DOC] cvs: phpdoc /en/reference/pdo_mysql reference.xml

2005-11-26 Thread Dan Scott
dbs Sun Nov 27 01:51:43 2005 EDT

  Modified files:  
/phpdoc/en/reference/pdo_mysql  reference.xml 
  Log:
  Address #35417 [NEW]: PDO_MySQL docs unclear about transaction safety
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/pdo_mysql/reference.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/pdo_mysql/reference.xml
diff -u phpdoc/en/reference/pdo_mysql/reference.xml:1.6 
phpdoc/en/reference/pdo_mysql/reference.xml:1.7
--- phpdoc/en/reference/pdo_mysql/reference.xml:1.6 Thu Sep 15 16:57:51 2005
+++ phpdoc/en/reference/pdo_mysql/reference.xml Sun Nov 27 01:51:40 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
 
@@ -22,10 +22,10 @@
 
 
  
-  Beware: MySQL tables do not support transactions by default.  When
-  writing transactional database code, MySQL will pretend that a
-  transaction was initiated successfully, even when no transactional
-  support is present.  In addition, any DDL queries issued will implicitly
+  Beware: Some MySQL table types (storage engines) do not support 
transactions.  When
+  writing transactional database code using a table type that does not 
support
+  transactions, MySQL will pretend that a transaction was initiated 
successfully.
+  In addition, any DDL queries issued will implicitly
   commit any pending transactions.