| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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"
|
|
|
|
| |
pg_client_encoding() is available from PHP4.0.3 and this function is available from PHP 4.3.0
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
|
|
|
| |
the way
|
| |
|
|
|
|
|
| |
Rule of the thumb: initialize in RINIT, clean in RSHUTDOWN
|
|
|
|
|
|
| |
This should work correctly without causing compatibility issues with previous
scripts. Someone might want to double check this change, just in case.
|
|
|
|
|
| |
mysql_store_result()
|
| |
|
|
|
|
|
|
|
|
| |
# 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)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
| |
@- Implemented max_execution_time under Win32 (Zeev)
|
|
|
|
|
| |
- need to define both COMPILE_DL_MODULE and HAVE_MODULE=1
|
| |
|
| |
|
|
|
|
| |
(Zeev)
|
| |
|
|
|
|
|
|
| |
- Fix a possible crash bug in failed file open error message
- Fix SAPI initialization issue that could lead to a crash
|
|
|
|
|
| |
#if !(WIN.* => #ifndef PHP_WIN32
|
|
|
|
|
| |
you start counting at 0 or 1).
|
|
|
|
|
|
|
|
|
|
| |
@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!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|