Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed prototype. | Sean Bright | 2001-03-12 | 1 | -1/+1 |
| | |||||
* | This should fix the problems with not including -lz. | foobar | 2001-03-10 | 1 | -0/+5 |
| | |||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 2 | -2/+2 |
| | |||||
* | Initalize some of the global vars. Crashed under ms debugger without having ↵ | Shane Caraveo | 2001-02-21 | 1 | -3/+7 |
| | | | | them initialized. | ||||
* | Typos in protos. | Egon Schmid | 2001-02-18 | 1 | -1/+1 |
| | |||||
* | did someone poop in the code? :-) | Stig Bakken | 2001-02-01 | 1 | -1/+1 |
| | |||||
* | Only two lines are allowed here. | Egon Schmid | 2001-01-31 | 1 | -3/+2 |
| | |||||
* | Added the mysql_get_*_info() functions. | Sean Bright | 2001-01-31 | 2 | -0/+123 |
| | | | | | | | | # 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) | ||||
* | - Change unset() functions to null(). unset() is legacy | Andi Gutmans | 2001-01-31 | 1 | -2/+2 |
| | |||||
* | Fixed conditional. | Sean Bright | 2001-01-31 | 1 | -1/+1 |
| | | | | | # Woops! | ||||
* | Fix for bug #8991. mysql_field_type() now returns "year" for columns of | Sean Bright | 2001-01-31 | 1 | -0/+9 |
| | | | | | type YEAR. | ||||
* | Added my_winthread.c. Thanks to Thimble Smith. | Sebastian Bergmann | 2001-01-24 | 2 | -0/+108 |
| | |||||
* | Don't #define HAVE_COMPRESS on windows. | MySQL Team | 2001-01-24 | 2 | -1/+3 |
| | |||||
* | Upgrade ext/mysql/libmysql to version 3.23.32. One notable bug fix is | MySQL Team | 2001-01-23 | 43 | -401/+1136 |
| | | | | | | that the client can now connect to a server which is using a default charset other than latin1. | ||||
* | @BeOS patch from svanegmond@bang.dhs.org modified somewhat by Rasmus | Rasmus Lerdorf | 2001-01-21 | 1 | -0/+2 |
| | | | | | BeOS patch from svanegmond@bang.dhs.org modified somewhat by Rasmus | ||||
* | Don't fetch numeric indices in mysql_fetch_object() | Zeev Suraski | 2001-01-14 | 1 | -1/+1 |
| | |||||
* | Fix for bug 6073 from Sean R. Bright <elixer@erols.com> | Rasmus Lerdorf | 2001-01-12 | 1 | -1/+5 |
| | |||||
* | Add Release_TSDbg support. This mode compiles PHP with the release C runtime, | Zeev Suraski | 2000-12-26 | 1 | -0/+25 |
| | | | | | | but with optimizations disabled and with debug info. Some crashes can only be debugged using this mode. | ||||
* | - Get the MySQL module a bit uptodate. | Zeev Suraski | 2000-12-02 | 1 | -130/+152 |
| | | | | | | | - Fix a bug in mysql_do_connect() - it would corrupt the host argument, if it contained a port (or could corrupt the INI value, so that the port argument would work only the first time around) | ||||
* | Fix bug #7034 | foobar | 2000-11-21 | 1 | -0/+1 |
| | |||||
* | 2nd step towards auto-credits | Hartmut Holzgraefe | 2000-11-20 | 1 | -0/+2 |
| | |||||
* | Will work on a more thorough implementation for mysql_store_result() after 4.0.4 | Zeev Suraski | 2000-11-08 | 1 | -2/+6 |
| | |||||
* | Enable to use mysql_use_result in query functions. | Stanislav Malyshev | 2000-11-07 | 1 | -8/+43 |
| | | | | | | You may need this if you use real big queries. @- Allow user to use mysql_use_result in mysql queries (Stas) | ||||
* | Fix msql_close(), pg_close() and sybase_close() (Sybase CT) | Zeev Suraski | 2000-11-03 | 1 | -1/+0 |
| | |||||
* | Fixed mysql_close() - A bit more complicated than I originally thought | Zeev Suraski | 2000-11-03 | 1 | -2/+9 |
| | |||||
* | Fix mysql_close() | Zeev Suraski | 2000-11-03 | 1 | -1/+4 |
| | |||||
* | Use zend_register_list_destructors_ex() instead. | Andrei Zmievski | 2000-10-25 | 1 | -3/+3 |
| | |||||
* | make libmysql compile under win | Daniel Beulshausen | 2000-10-21 | 2 | -1/+17 |
| | |||||
* | Removed files from Win32 workspace that were removed in libmysql 3.23 | Sebastian Bergmann | 2000-10-21 | 1 | -12/+0 |
| | |||||
* | Update libmysql to 3.23 version. No major changes visible to the user - mostly | MySQL Team | 2000-10-20 | 96 | -980/+2793 |
| | | | | | bug fixes and other maintenance-oriented changes. | ||||
* | Mega-patch to get better resource information for modules. | Andrei Zmievski | 2000-10-20 | 1 | -6/+9 |
| | | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei) | ||||
* | Added mysql_escape_String() | Zeev Suraski | 2000-10-11 | 2 | -0/+23 |
| | |||||
* | - Cleanup output functions | Andi Gutmans | 2000-09-30 | 1 | -1/+1 |
| | |||||
* | added mysql_fetch_assoc. Acts like mysql_fetch_array used to. | Brian Moon | 2000-09-20 | 2 | -1/+11 |
| | |||||
* | More complete set of (C) notes | Sascha Schumann | 2000-08-24 | 1 | -1/+7 |
| | |||||
* | Script for replacing the copyright messages | Sascha Schumann | 2000-08-24 | 1 | -0/+26 |
| | |||||
* | - Remove new libmysql files | Andi Gutmans | 2000-08-22 | 15 | -8609/+0 |
| | |||||
* | - Try and revert libmysql for 4.0.2 | Andi Gutmans | 2000-08-22 | 86 | -3244/+808 |
| | |||||
* | Interface for 'raid' files (ont in use by PHP) | MySQL Team | 2000-08-22 | 1 | -0/+155 |
| | |||||
* | New files for MySQL 3.23.23 client library. New files are for qouting | MySQL Team | 2000-08-22 | 100 | -808/+11698 |
| | | | | | using different character sets. | ||||
* | That's no bug, it's quite fine the way it is (if id is | Zeev Suraski | 2000-07-05 | 1 | -3/+0 |
| | | | | | | | | set to -1, it's ignored, and the passed_id argument is used). If you're experiencing trouble with mysql_close(), please give me a reproducing script. If there's a bug, it's not as simple as that. | ||||
* | - Discoverd possible bug. Could somebody have a look. | Uwe Steinmann | 2000-07-05 | 1 | -1/+3 |
| | |||||
* | 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. | ||||
* | Warn about using the built-in MySQL library | Zeev Suraski | 2000-06-20 | 1 | -0/+4 |
| | |||||
* | This is no longer needed | Zeev Suraski | 2000-06-20 | 1 | -14/+0 |
| | |||||
* | kill warinig | Thies C. Arntzen | 2000-06-19 | 1 | -1/+1 |
| | |||||
* | C++ // comments are evil ... | Hartmut Holzgraefe | 2000-06-16 | 2 | -4/+4 |
| | |||||
* | Move timeout code to Zend, allow Win32 timeouts | Zeev Suraski | 2000-06-16 | 2 | -7/+11 |
| | | | | | @- Implemented max_execution_time under Win32 (Zeev) | ||||
* | Fix Windows .dsp's | Zeev Suraski | 2000-06-11 | 1 | -1/+0 |
| | |||||
* | - 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 |