Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | var_reset -> ZVAL_RESET | Zeev Suraski | 2001-07-11 | 1 | -2/+2 | |
| | ||||||
* | Optimizing the mssql_execute function. | Frank M. Kromann | 2001-07-05 | 1 | -50/+4 | |
| | ||||||
* | Adding new function to convert from binary to GUID format | Frank M. Kromann | 2001-06-28 | 1 | -2/+72 | |
| | ||||||
* | - Use ALLOC_HASHTABLE() instead of emalloc(sizeof(HashTable)) | Andi Gutmans | 2001-06-19 | 1 | -1/+1 | |
| | ||||||
* | Fixing the return type of numeric data to be numeric | Frank M. Kromann | 2001-06-13 | 1 | -19/+32 | |
| | ||||||
* | Fixing memory leak. | Frank M. Kromann | 2001-06-05 | 1 | -61/+542 | |
| | | | | | | Fixing mssql_pconnect to work with ISAPI Adding MSSQL_NUM, MSSQL_ASSOC and MSSQL_BOTH so the extension will be more compatible with MySQL | |||||
* | * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build) | Stig Bakken | 2001-05-24 | 1 | -0/+4 | |
| | ||||||
* | Minor change to the way string lengths are calculated and space alocated. | Frank M. Kromann | 2001-05-09 | 1 | -6/+6 | |
| | ||||||
* | Getting rid of memset. | Frank M. Kromann | 2001-05-09 | 1 | -15/+5 | |
| | ||||||
* | Fixing the use of compatibility mode. When the flag is off the system should ↵ | Frank M. Kromann | 2001-05-08 | 1 | -2/+2 | |
| | | | | return correct PHP types (default) when the flag is on strings will be returned for all data types. | |||||
* | Fixing the use of compatibility_mode setting in php.ini. | Frank M. Kromann | 2001-05-08 | 1 | -10/+27 | |
| | | | | | Nuking trailing spaces when returning a string. | |||||
* | - Optimizer the previous patch a bit by nuking memset() | Andi Gutmans | 2001-05-01 | 1 | -7/+7 | |
| | ||||||
* | Adding support for BINARY, VARBINARY and IMAGE column types. | Frank M. Kromann | 2001-05-01 | 1 | -1/+32 | |
| | | | | | Thanks to Brad LaFountain. | |||||
* | Changed email | Frank M. Kromann | 2001-03-13 | 1 | -2/+2 | |
| | ||||||
* | Adding a new function mssql_next_result() allowing the query to return more ↵ | Frank M. Kromann | 2001-03-09 | 1 | -148/+131 | |
| | | | | | | | than one result. This can be done with a stored procedure or by sending more than one select to the server. | |||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 | |
| | ||||||
* | Fixed some protos. | Egon Schmid | 2001-01-27 | 1 | -3/+3 | |
| | ||||||
* | Fixing wrong return value when executing statements not returning a record set. | Frank M. Kromann | 2001-01-04 | 1 | -1/+1 | |
| | ||||||
* | Changed presentation of default values for textsize and textlimit in phpinfo(). | Frank M. Kromann | 2000-11-30 | 1 | -7/+21 | |
| | | | | | the value -1 means "Server default" | |||||
* | Removed old version 6.5 code. Clinet Libraries for SQL Server 7.0 can be ↵ | Frank M. Kromann | 2000-11-29 | 1 | -25/+15 | |
| | | | | | | | used with version 6,5. Minor changes to use som Zend macros to define globals. | |||||
* | Fixing wring resource handle returned from mssql_query(). | Frank M. Kromann | 2000-11-29 | 1 | -3/+2 | |
| | | | | | The error was introduced when adding mssql_fetch_batch(). | |||||
* | Adding new functions, mssql_affected_rows and mssql_fetch_batch. | Frank M. Kromann | 2000-11-21 | 1 | -26/+110 | |
| | | | | | Added optional paramter to mssql_query, batchsize used minimize the memery usage during select of large datasats. | |||||
* | Use zend_register_list_destructors_ex() instead. | Andrei Zmievski | 2000-10-25 | 1 | -3/+3 | |
| | ||||||
* | Fixing bug #6000 | Frank M. Kromann | 2000-10-20 | 1 | -0/+1 | |
| | | | | | | | Return the full content for datetime colums Make the same fix for smalldatetime | |||||
* | Fixing bug #6000 | Frank M. Kromann | 2000-10-20 | 1 | -6/+7 | |
| | | | | | Return the full content for datetime colums | |||||
* | Fixing bug in mssql_fetch_object() and mssql_close() | Frank M. Kromann | 2000-10-20 | 1 | -2/+8 | |
| | ||||||
* | 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) | |||||
* | Attemt to fix a lot of bug reports (5582,5614,5633,60,6181,6202) on crashes ↵ | Frank M. Kromann | 2000-08-31 | 1 | -0/+5 | |
| | | | | with php and mssql server. | |||||
* | Stop including dl/phpdl.h. | Sascha Schumann | 2000-06-24 | 1 | -1/+0 | |
| | ||||||
* | @- Fixed an initialization problem in the MS-SQL problem that could cause | Zeev Suraski | 2000-06-12 | 1 | -5/+5 | |
| | | | | | @ a crash in mssql_query() (Zeev) | |||||
* | - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patch | Andi Gutmans | 2000-06-05 | 1 | -22/+22 | |
| | ||||||
* | some protos where missing proto keyword | Hartmut Holzgraefe | 2000-05-23 | 1 | -2/+2 | |
| | ||||||
* | Use #ifdef COMPILE_DL_EXTNAME solely. | Sascha Schumann | 2000-05-23 | 1 | -2/+2 | |
| | ||||||
* | Update the license with the new clause 6 | Zeev Suraski | 2000-05-18 | 1 | -2/+2 | |
| | ||||||
* | #if COMPILE_DL | Sascha Schumann | 2000-05-02 | 1 | -2/+2 | |
| | | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME) | |||||
* | Replace the various get_module() functions with a uniform | Sascha Schumann | 2000-05-02 | 1 | -1/+1 | |
| | | | | | ZEND_GET_MODULE(name) macro. | |||||
* | Fixing init problem for Zval's in mssql_query | Frank M. Kromann | 2000-04-20 | 1 | -5/+5 | |
| | ||||||
* | minor optimization | Frank M. Kromann | 2000-04-17 | 1 | -6/+8 | |
| | ||||||
* | Fixing compilation errors in MSSQL module | Frank M. Kromann | 2000-04-15 | 1 | -5/+5 | |
| | ||||||
* | phpinfo() prettying | Colin Viebrock | 2000-04-06 | 1 | -5/+7 | |
| | ||||||
* | Description differs between version 3 and 4. | Egon Schmid | 2000-03-28 | 1 | -34/+28 | |
| | ||||||
* | Couple of thangs: | Sterling Hughes | 2000-03-28 | 1 | -62/+149 | |
| | | | | | | 1. We've got protos! 2. The second half of the script is now most Zendiferous. | |||||
* | Change extension names in all extensions' zend_module_entry to their | Stig Bakken | 2000-03-06 | 1 | -1/+1 | |
| | | | | | directory name. | |||||
* | the pipe is breaking all the time | Zeev Suraski | 2000-02-19 | 1 | -2/+2 | |
| | ||||||
* | Fixing compile and link with current cvs. | Frank M. Kromann | 2000-02-13 | 1 | -90/+109 | |
| | ||||||
* | Fix PostgreSQL startup routine in thread-safe mode | Zeev Suraski | 2000-02-05 | 1 | -20/+0 | |
| | ||||||
* | - MS-SQL fix | Zeev Suraski | 2000-01-17 | 1 | -39/+41 | |
| | | | | | - Fix a crash bug in session_register() | |||||
* | 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). | |||||
* | - The tree compiles again | Zeev Suraski | 1999-12-18 | 1 | -13/+13 | |
| | ||||||
* | More cleanup... | Zeev Suraski | 1999-12-17 | 1 | -1/+1 | |
| |