summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed possible crash in php_mssql_get_column_content_without_type()Kalle Sommer Nielsen2010-08-181-0/+8
| | | | # Also fix NEWS entry in PHP_5_2 for previous commit
* - Fixed bug #51562 (query timeout in mssql can not be changed per query)Felipe Pena2010-04-211-0/+2
| | | | | Patch by: ejsmont dot artur at gmail dot com
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Limit db connection strings to 255 chars here - I don't trust the underlying ↵Rasmus Lerdorf2009-07-151-4/+31
| | | | libs
* Fixed #37209 (mssql_execute with non fatal errors)Kalle Sommer Nielsen2009-02-231-4/+10
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - fix build (all platforms)Pierre Joye2008-12-111-1/+2
|
* MFB: Fixed bug #46798 (Crash in mssql extension when retrieving a NULL valueIlia Alshanetsky2008-12-101-5/+8
| | | | | inside a binary or image column type)
* MFB: Revert patch for bug #44325Ilia Alshanetsky2008-03-051-10/+5
|
* MFB: Fixed bug #44325 (mssql_bind not correctly bind empty strings asIlia Alshanetsky2008-03-041-5/+10
| | | | | parameter value)
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFB: Fixed bug #4294 (Move *timeout initialization from RINIT to connectIlia Alshanetsky2007-10-221-2/+3
| | | | | time)
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-23/+13
|
* #39213Frank M. Kromann2007-02-041-1/+1
| | | | | | Fix for '' returned as ' '. This only works with FreeTDS as microsofts library returns a length of 1 for an empty string!
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Added automatic module globals managementDmitry Stogov2006-06-151-7/+10
|
* Fix #33694 invalid sql or timeouts makes it impossible to reuse persistent ↵Frank M. Kromann2006-04-041-0/+5
| | | | connections
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fix #35730 Use correct character encoding with FreeTDSFrank M. Kromann2005-12-211-2/+7
|
* Fixed build of mssql extension.Ilia Alshanetsky2005-12-061-1/+1
|
* MFHfoobar2005-12-061-1/+1
|
* MFH: list_entry -> zend_rsrc_list_entryfoobar2005-12-051-6/+6
|
* MFH: Fix #33201 Crash when fetching some data typesFrank M. Kromann2005-11-181-8/+8
|
* MFH: Fix #32009 crash when mssql_bind() is called more than onceFrank M. Kromann2005-11-181-11/+16
|
* MFH: Fix #33153 Crash in mssql_next_result().Frank M. Kromann2005-11-181-0/+5
|
* Change max_procs from 25 to library default. This will make FreeTDS ↵Frank M. Kromann2005-11-141-2/+4
| | | | connections work a bit better
* Fix bad MFHfoobar2005-11-061-1/+0
|
* MFH: Fix #35037. Selecting a uniqueidentifier would return unknown data type ↵Frank M. Kromann2005-11-011-0/+3
| | | | when used with freetds.
* MFB: Fix for #34369Frank M. Kromann2005-09-051-6/+27
| | | | | Add extra parameter to mssql_connect to force a new connection
* Make sure this works for multiple results as wellFrank M. Kromann2005-08-081-0/+1
|
* Remove debug code and optimize a bitFrank M. Kromann2005-08-081-9/+5
|
* Fix #32010. Leak in mssql_fetch_batch().Frank M. Kromann2005-08-081-73/+82
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fix for #32682. Error on module shutdown when called from activescriptFrank M. Kromann2005-04-121-0/+4
|
* FreeTDS does not have support for DBTEXTLIMITFrank M. Kromann2005-02-251-0/+2
|
* make the mssql extension work with freetds on win32Frank M. Kromann2005-01-181-0/+7
|
* Fix #31120 and #31135. mssql_query returns false on successfill inserts and ↵Frank M. Kromann2004-12-161-4/+2
| | | | stored procedures
* MFB: revertIlia Alshanetsky2004-12-061-4/+0
|
* Fixed bug #30962 (mssql returns space for NULL columns).Ilia Alshanetsky2004-12-031-0/+4
|
* MFB: fixed build.Ilia Alshanetsky2004-11-151-1/+1
|
* Adding most of the changes suggested in #30280. Mostly fix's for possible leaks.Frank M. Kromann2004-11-151-12/+24
|
* Fix compilationFrank M. Kromann2004-09-281-1/+1
|
* Fixed bug #30224 (Sybase date strings are sometimes not null terminated).Ilia Alshanetsky2004-09-281-1/+2
|
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-3/+3
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* - Better stability during premature shutdown of request startupAndi Gutmans2004-07-101-0/+1
|
* Fix for #28512. Allocate enough space to store dataFrank M. Kromann2004-06-301-3/+18
|
* MFB BugFix# 28626 You can't #ifdef check a typedef. Just give it another ↵Sara Golemon2004-06-041-1/+1
| | | | name since it's only used once anyway.
* Fix problem getting return value from stored procedure when it returns ↵Frank M. Kromann2004-04-201-1/+4
| | | | multiple results
* Fix for #27764. Get return value from a stored procedure not returning any ↵Frank M. Kromann2004-03-301-3/+1
| | | | result sets
* Fix for #27743. Make sure Money types are converted and returned correctFrank M. Kromann2004-03-291-2/+7
|