]> granicus.if.org Git - php/commitdiff
added mysql changes:
authorGeorg Richter <georg@php.net>
Tue, 16 Jul 2002 14:31:55 +0000 (14:31 +0000)
committerGeorg Richter <georg@php.net>
Tue, 16 Jul 2002 14:31:55 +0000 (14:31 +0000)
- php.ini option mysql.connect_timeout
- optional parameter client_flags (mysql_connect, mysql_pconnect)
- automatic rollback for non commited transactions

NEWS

diff --git a/NEWS b/NEWS
index 22ad2a53a7b023d12cb6246d906ef9373b7d6984..decd0ee1a373ea8c2dc5a0cefedee93696b5559e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,13 @@
 PHP 4                                                                      NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2002, Version 4.3.0
+- Added php.ini option "mysql.connect_timeout" to set the time out limit for 
+  mysql_connect and mysql_pconnect (Georg).
+- Added optional parameter client flags to mysql_connect and mysql_pconnect 
+  functions, which supports now idle timeout and diffrent protocols like SSL
+  and compressed protocol (Georg)
+- Added automatically rollback in ext/mysql for non committed transactions
+  (Georg)
 - Added 'type juggling' for boolean values. The following conversions are
   done (Derick):
 - $a = FALSE; $a++; /* $a is now bool(true); */