Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Move non-public code to non-public header file. This should also solve | Andrey Hristov | 2007-10-08 | 1 | -114/+0 |
| | | | | | #42890 "Constant "LIST" defined by mysqlclient and c-client" | ||||
* | Import mysqlnd | Andrey Hristov | 2007-10-05 | 1 | -3/+25 |
| | | | | | Patch ext/mysql and ext/mysqli to support mysqlnd | ||||
* | Add mysql_set_charset() so that the connection encoding can be changed. This ↵ | Scott MacVicar | 2007-05-14 | 1 | -0/+3 |
| | | | | is similar to the SET NAMES statement but allows the mysql_real_escape_string to use the correct character set. | ||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | |||||
* | - Bumber up year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -2/+2 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Added new functionality: | Georg Richter | 2002-11-11 | 1 | -0/+2 |
| | | | | | | | | | Warnings for table/index scans Warnings for SQL-Errors Warnings for non free result sets It can be activated via ini.setting "mysql.trace_mode" | ||||
* | Rename mysql_character_set_name() to mysql_client_encoding(). ↵ | Yasuo Ohgaki | 2002-08-24 | 1 | -1/+1 |
| | | | | pg_client_encoding() is available from PHP4.0.3 and this function is available from PHP 4.3.0 | ||||
* | Added support for php.ini parameter "mysql.connect_timeout" | Georg Richter | 2002-07-16 | 1 | -0/+1 |
| | |||||
* | - add mysql_info function | Jan Lehnardt | 2002-03-29 | 1 | -0/+1 |
| | |||||
* | Added mysql_ping() function. | Zak Greant | 2002-03-24 | 1 | -0/+1 |
| | |||||
* | a) ws fixed | Georg Richter | 2002-03-24 | 1 | -0/+3 |
| | | | | | | | | | | | | | | b) changed mysql_list_processes, mysql_stat (zend_parse_parameters) c) New functions: 1) mysql_real_escape_string this function is similar to mysql_escape_string (deprecated). it needs a mysql-connection to escape a string according to the current character set 2) mysql_character_set_name returns the current character set for the connection 3) mysql_thread_id return the pid for the current connection. This function is usefull when using mysql_list_processes | ||||
* | (PHP mysql_list_processes) Returns a pointer to a result set containing | Zak Greant | 2002-03-24 | 1 | -0/+2 |
| | | | | | | | | | | | | | information on the processes running in the MySQL server. (PHP mysql_stat) Returns a string containing information on the status of the MySQL server. @- Added two new functions: mysql_list_processes and mysql_stat (Georg) @- mysql_list_processes() fetches information on the processes running on @ the MySQL server. @- mysql_stat() returns status information for a MySQL server. # Committed for Georg by Zak | ||||
* | Maintain headers. | Sebastian Bergmann | 2002-02-28 | 1 | -1/+1 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | Make the extension work with MySQL 4.0 | foobar | 2001-11-02 | 1 | -0/+2 |
| | |||||
* | Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵ | Zeev Suraski | 2001-07-30 | 1 | -4/+4 |
| | | | | the way | ||||
* | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -11/+1 |
| | |||||
* | emalloc()'d strings must be freed before the request shutdown; | Zeev Suraski | 2001-05-05 | 1 | -0/+1 |
| | | | | | Rule of the thumb: initialize in RINIT, clean in RSHUTDOWN | ||||
* | @ Added connection error support to mysql_error() and mysql_errno() (Jason) | Jason Greene | 2001-05-04 | 1 | -0/+2 |
| | | | | | | This should work correctly without causing compatibility issues with previous scripts. Someone might want to double check this change, just in case. | ||||
* | Implement mysql_unbuffered_query() - uses mysql_use_result() instead of | Zeev Suraski | 2001-03-13 | 1 | -0/+1 |
| | | | | | mysql_store_result() | ||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | Added the mysql_get_*_info() functions. | Sean Bright | 2001-01-31 | 1 | -0/+4 |
| | | | | | | | | # If anyone knows of a version of mysql lower then 3.20.32 that implements # all 3 of these functions, please change the conditionals. @- Added mysql_get_client_info(), mysql_get_server_info(), @ mysql_get_proto_info(), and mysql_get_host_info() functions. (Sean) | ||||
* | Added mysql_escape_String() | Zeev Suraski | 2000-10-11 | 1 | -0/+1 |
| | |||||
* | added mysql_fetch_assoc. Acts like mysql_fetch_array used to. | Brian Moon | 2000-09-20 | 1 | -0/+1 |
| | |||||
* | Change header protection macros to conform to standard. | Sascha Schumann | 2000-07-02 | 1 | -3/+3 |
| | | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation. | ||||
* | kill warinig | Thies C. Arntzen | 2000-06-19 | 1 | -1/+1 |
| | |||||
* | Move timeout code to Zend, allow Win32 timeouts | Zeev Suraski | 2000-06-16 | 1 | -0/+1 |
| | | | | | @- Implemented max_execution_time under Win32 (Zeev) | ||||
* | - Nuke COMPILE_DL. Modules that need to be compiled as dll's in Windows | Andi Gutmans | 2000-06-10 | 1 | -6/+1 |
| | | | | | - need to define both COMPILE_DL_MODULE and HAVE_MODULE=1 | ||||
* | Update the license with the new clause 6 | Zeev Suraski | 2000-05-18 | 1 | -2/+2 |
| | |||||
* | Make MySLS_FETCH use the same globals ID as ZEND_INIT_MODULE_GLOBALS | Sam Ruby | 2000-04-04 | 1 | -1/+1 |
| | |||||
* | @- Made the IMAP and LDAP modules compilable under Windows and thread-safe ↵ | Zeev Suraski | 2000-04-01 | 1 | -6/+4 |
| | | | | (Zeev) | ||||
* | the pipe is breaking all the time | Zeev Suraski | 2000-02-19 | 1 | -2/+2 |
| | |||||
* | - Update .dsp's | Zeev Suraski | 2000-02-18 | 1 | -3/+0 |
| | | | | | | - Fix a possible crash bug in failed file open error message - Fix SAPI initialization issue that could lead to a crash | ||||
* | #if WIN.* => #ifdef PHP_WIN32 | Sascha Schumann | 2000-02-12 | 1 | -1/+1 |
| | | | | | #if !(WIN.* => #ifndef PHP_WIN32 | ||||
* | Happy Y2K patch! Happy new year (or the new millennium, depending on whether | Sascha Schumann | 2000-01-01 | 1 | -1/+1 |
| | | | | | you start counting at 0 or 1). | ||||
* | @Fix some warnings when compiling in maintainer-mode (Stig) | Stig Bakken | 1999-12-01 | 1 | -3/+3 |
| | | | | | | | | | | @Made mysql and gd work as shared extensions again (Stig) - Fixed some warnings in maintainer-mode. - Made mysql and gd work as shared extensions again by defining COMPILE_DL if PIC is defined. # We need a better solution for building .so extensions than this # PIC/COMPILE_DL hack! | ||||
* | * archive-based convenience libraries completely replaced | Sascha Schumann | 1999-10-04 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature | ||||
* | Final MySQL tweaks | Zeev Suraski | 1999-09-03 | 1 | -0/+122 |