summaryrefslogtreecommitdiff
path: root/ext/odbc
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Fix some lib vs $PHP_LIBDIR issuesJani Taskinen2007-07-311-2/+2
|
* MFH:- Fixed bug #42019 (configure option --with-adabas=DIR does not work)Jani Taskinen2007-07-171-0/+1
|
* MFH: - Changed AC_ARG_* options to PHP_ARG_* options.Jani Taskinen2007-07-111-253/+174
| | | | | | | | | | | | MFH: - Some cleanups here and there MFH: - Enabled PHP_CHECK_CONFIGURE_OPTIONS (checks for unknown configure MFH: options) # Note to Marcus: ext/dba/config.m4 needs to be "converted" to use # the PHP_ARG_* options. I did't touch it needs quite a lot of work to keep # it's current behaviour regarding "enabled-by-default" parts of it. # # Hint: By using the PHP_ARG_* options you have the "default" option.. ;)
* MFH: Fix some configure --help textsfoobar2007-07-031-38/+20
|
* fix odbc resource handling, patch by Dave LawsonStanislav Malyshev2007-03-132-7/+3
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-7/+6
|
* MFH: check SQLError() return value and output a meaningful errmsg when it failsAntony Dovgal2007-02-191-1/+5
|
* Fixed output code inside odbc_result_all()Ilia Alshanetsky2007-01-161-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-015-5/+5
|
* MFHAntony Dovgal2006-12-281-8/+8
|
* fix #37848 (ext/odbc compile failure)Antony Dovgal2006-06-191-1/+1
|
* Added automatic module globals managementDmitry Stogov2006-06-152-29/+22
|
* MFH: fix #35959 (Cannot build with Solid 2.3)Antony Dovgal2006-01-101-1/+1
|
* bump year and license versionfoobar2006-01-015-15/+15
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* MFHfoobar2005-12-061-46/+46
|
* MFH: list_entry -> zend_rsrc_list_entryfoobar2005-12-051-6/+6
|
* test -e does not work with solarisfoobar2005-11-211-2/+2
|
* Fixed crash on AIXDmitry Stogov2005-09-081-0/+6
|
* No HTML output if html_errors is off (bug #34006)foobar2005-08-051-1/+5
|
* - Bumber up yearfoobar2005-08-035-5/+5
|
* Don't crash on exit by destroying the same hash twiceEdin Kadribasic2005-07-021-1/+1
|
* - Fixed bug #33427 (ext/odbc: check if unixODBC header file exists)foobar2005-06-221-12/+19
|
* no trailing dotsfoobar2005-06-181-1/+1
|
* fix bug #33214 (odbc_next_result does not signal SQL errors with 2-statement ↵Antony Dovgal2005-06-021-2/+4
| | | | | | | SQL batches). Path by rich at kastle dot com.
* - Unify the "configure --help" textsfoobar2005-05-291-13/+11
|
* MFB: - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems)foobar2005-05-101-1/+1
|
* - Added PHP_INSTALL_HEADERS() macrofoobar2005-05-071-4/+4
| | | | | | | - Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
* - Fix birdstep support (no SQLDataSources() support in it)foobar2005-04-211-1/+3
|
* - Add support for latest Birdstepfoobar2005-04-142-1/+26
|
* - This was supposed to be escaped with \foobar2005-04-101-1/+1
|
* Add more detailed failure msg. (bug #32649)foobar2005-04-101-6/+7
|
* fix #32560 (configure looks for incorrect library - libdb2.so instead of ↵Antony Dovgal2005-04-041-6/+12
| | | | | | | libdb2.a, which is used actually)
* add checks for libs & headers required by IBM DB2Antony Dovgal2005-01-181-0/+9
|
* fix bug #30430 (odbc_next_result() doesn't bind values and that results in ↵Antony Dovgal2005-01-181-6/+3
| | | | | | | segfault) fix protos
* fix weird DB2 issue:Antony Dovgal2005-01-171-2/+2
| | | | | | DB2's SQLDataSources() returns _max available_ length of result string instead of _real_ length and that results in strings a-la "\0 "
* fix leak appearing when odbc_errormsg() got invalid resourceAntony Dovgal2005-01-171-1/+3
|
* Add support for ODBCRouterWez Furlong2005-01-133-0/+83
|
* - Fix outside-source-tree builds. Always include generated header filesfoobar2005-01-091-1/+1
| | | | | with #include <some_header.h> to make sure the correct file is used.
* MFB_4_3: Quote macro names in AC_DEFUN()foobar2004-12-301-3/+3
|
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-031-10/+10
| | | | | to support multi-ABI platforms.
* Checking in a patch by Dave Lawson (dlawson@masterytech.com) to correctDan Kalowsky2004-08-131-14/+14
| | | | | | | some of the behavior found in the odbc_fetch_*() functions. This patch NEEDS to be tested on MS Access before a release is done with it. This submission is to get it into the daily builds for testing.
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-4/+4
| | | | | | | | | | | | | | | 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.
* Bug 29058 (patch submitted by bug reporter)Dan Kalowsky2004-07-151-1/+1
|
* Fixed possible memory leak.Ilia Alshanetsky2004-06-181-2/+6
|
* - Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5foobar2004-01-171-2/+2
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-083-6/+6
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-082-4/+4
|
* Add new (optional!) win32 build infrastructure.Wez Furlong2003-12-021-0/+12
| | | | | Will follow up to internals@ shortly.
* - Fixed bug #26376 (typo in ext/odbc/config.m4: DBMaker test fails)foobar2003-11-251-4/+2
|