summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed typo.Ilia Alshanetsky2003-08-181-2/+2
|
* emalloc -> safe_emallocIlia Alshanetsky2003-08-121-7/+7
|
* Use new infrastructure.Zeev Suraski2003-08-031-2/+1
| | | | | There are bound to be some messups, please report build/runtime bugs!
* Removed unused variables.Ilia Alshanetsky2003-07-231-2/+1
|
* Fixed bug #24752 (Unhandled "uniqueidentifier" field type)Ilia Alshanetsky2003-07-231-0/+14
| | | | | Original Patch By: s.sonnenberg[at]coolspot.de
* Change fetch functions and protos so they make more sense.Frank M. Kromann2003-07-031-7/+11
| | | | | fetch_row or fetch_assoc should not take the optional parameter
* Updating email addressFrank M. Kromann2003-06-141-1/+1
|
* proto fixesAndrey Hristov2003-06-121-22/+22
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Fix for bug 23402. Crash when mssql?bind was used incorrectlyFrank M. Kromann2003-05-211-0/+1
|
* Fixing bit support. Bug #23324Frank M. Kromann2003-04-301-0/+2
|
* No c++ commentsfoobar2003-03-141-2/+2
|
* Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.foobar2003-03-071-10/+10
| | | | | | # Intentionally left out any 'alias' for it, this way 3rd party extension # maintainers will really NOTICE the change.
* Bug #20426. Convert SMALLDATETIME correctFrank M. Kromann2003-02-111-4/+18
|
* - Whitespace fixesDerick Rethans2003-02-091-2/+1
|
* cleanup variable initializationsFrank M. Kromann2003-02-091-10/+3
|
* Fixing coredump when no php.ini file is usedFrank M. Kromann2003-02-091-0/+3
|
* Bug #21707 problem with realFrank M. Kromann2003-02-091-0/+5
|
* Removed pointless checks.Ilia Alshanetsky2003-01-301-3/+2
|
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-181-1/+1
| | | | | | Thanks to Marcus Börger for writing a script that significantly simplifies this process.
* Removed pointless memory allocation checks.Ilia Alshanetsky2003-01-181-12/+3
|
* Release skiped results. This will free memory on the server.Frank M. Kromann2003-01-121-31/+34
| | | | | Make mssql_execute work for stored procedures with and without returning result sets
* Fixing copy and paste errorsFrank M. Kromann2003-01-101-3/+3
|
* Avoid warnings when running stored procedures returning multiple resultsFrank M. Kromann2003-01-101-10/+20
| | | | | | before setting output and return values. Additional results can be skipped by the optional parameter to mssql_execute
* Use the correct link when checking for more results on stored proceduresFrank M. Kromann2003-01-091-1/+1
|
* Restire BC for mssql_execute(). This will not break the new feature for handlingFrank M. Kromann2003-01-091-17/+45
| | | | | | multiple results from a single stired procedure. Adding mssql_free_statement()
* changed from LVAL to RESVAL macroFrank M. Kromann2003-01-091-2/+2
|
* Changed global data type to avoid problems with initializationFrank M. Kromann2003-01-081-1/+1
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Allow the native MSSQL extension to be compiled with FreeTDS on *nix platforms.Frank M. Kromann2002-12-161-8/+20
| | | | | | This will make the whole MSSAL API available on these platforms. @Allow compilation of mssql extension on *nix.
* Changed php_error() to php_error_docref()Frank M. Kromann2002-12-031-33/+33
|
* Bug #19370Frank M. Kromann2002-12-031-72/+73
| | | | | Allow stored procedures to return multiple results.
* Bug #17593Frank M. Kromann2002-12-031-0/+2
| | | | | Make sure any pending data is released from the server when freeing the result
* Allocating enough memory to hold values.Frank M. Kromann2002-12-031-16/+17
| | | | | Fix crash when certan stored procedures was called. This caused the free_result function to free memory not yet allocated.
* fix bug # 17497Sterling Hughes2002-10-281-1/+1
| | | | | (fix by: ddb@bitxtender.de)
* Unify error messagesDerick Rethans2002-06-261-35/+35
|
* Adding ini setting for max_procsFrank M. Kromann2002-06-101-0/+2
|
* Fixing the mssql_query to handle multiple results correct if the first ↵Frank M. Kromann2002-05-151-3/+5
| | | | result does not return any data.
* Fixing hanfling of data type REAL.Frank M. Kromann2002-05-141-15/+21
| | | | | Remove extra bytes allocated by emalloc calls
* Allow the MSSQL extension to use NT authenticationFrank M. Kromann2002-05-091-4/+10
|
* Minor change to allocated lengths for datesFrank M. Kromann2002-03-191-8/+2
|
* - Allow duality between Engine 1 & 2 using ZEND_STANDARD_CLASS_DEF_PTRAndi Gutmans2002-03-121-1/+1
|
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Making error handling thread safe. Thanks to Paco Ortiz <fjortiz@comunet.es>Frank M. Kromann2002-01-031-3/+3
|
* proto fixHartmut Holzgraefe2001-12-171-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* proto fixesHartmut Holzgraefe2001-12-061-1/+1
|
* added mssql_fetch_assoc() to be more mysql conformHarald Radi2001-12-021-1/+10
| | | | | changed mssql_fetch_array() back to its default behaviour (MSSQL_BOTH)
* Reset the error (or message) from the server when calling fetch_row functions.Frank M. Kromann2001-10-291-3/+15
| | | | | | | | If the user conected and changed the database the message from the change was reported when the user checked the error function after a failed fetch. This cased problems in PEAR/DB. If the fetch fails for other resons than a fetch after the last row, the message from the server will still be reported.
* Patch for correct handling of DATETIME values.Frank M. Kromann2001-10-231-14/+44
| | | | | | | The patch is implemented with a parameter in php.ini controling if datetime values are converted with the new or the old method. Thanks to Michael Bretterklieber <mbretter@jawa.at>