summaryrefslogtreecommitdiff
path: root/ext/interbase
Commit message (Collapse)AuthorAgeFilesLines
* - Close cursor immediately before reuse so that calling ibase_free_result isJouni Ahto2000-06-242-6/+23
| | | | | | | not necessary anymore. Seems to also prevent a a situation where at request shutdown cursor was first dropped and tried to close it afterwards when all the resources were not manually freed, and could occasionally segfault.
* Stop including dl/phpdl.h.Sascha Schumann2000-06-241-1/+0
|
* Added argument type.Egon Schmid2000-06-111-1/+1
|
* - Nuke COMPILE_DL. Modules that need to be compiled as dll's in WindowsAndi Gutmans2000-06-101-5/+0
| | | | | - need to define both COMPILE_DL_MODULE and HAVE_MODULE=1
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-37/+37
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-2/+2
|
* Update the license with the new clause 6Zeev Suraski2000-05-182-4/+4
|
* Default to the highest SQL version supported by libs.Jouni Ahto2000-05-141-32/+52
| | | | | | Fixed associative array values returned by ibase_field_info. Fixed compatibility problems with old versions of InterBase.
* Changed ibase_num_fields to use high-performance api (which fixed a *very*Jouni Ahto2000-05-122-17/+8
| | | | | obscure bug).
* Fixed all (?) remaining issues with InterBase 6 datatypes, especiallyJouni Ahto2000-05-123-72/+151
| | | | | | | | | | | | | with timestamp, date and time. Incombatible change: renamed constant IBASE_TIMESTAMP to IBASE_UNIXTIME. Incompatible change: renamed configuration directive ibase.timeformat to ibase.timestampformat. Added constants IBASE_TIMESTAMP, IBASE_DATE, IBASE_TIME. Added configuration directives ibase.dateformat and ibase.timeformat. ibase_timefmt() now takes an optional second argument specifying which format to change, default is IBASE_TIMESTAMP (for even a little backwards compatibility).
* SQL_INT64 binding support in prepared and executed queries.Jouni Ahto2000-05-111-13/+26
| | | | | | | | Fixed a (probably) longtime bug with binding to DECIMAL/NUMERIC stored as scaled integer. # Be lazy on documentation, then nobody ever uses the features there are, # and you never get caught for bugs...
* Support (partially) the new datatypes in InterBase 6.Jouni Ahto2000-05-092-9/+79
|
* Fix (?) #4314.Jouni Ahto2000-05-041-0/+5
|
* If using a persistent connection, check if it's still there and reopen ifJouni Ahto2000-05-041-7/+17
| | | | | needed.
* Make interbase compilable as shared moduleSascha Schumann2000-05-022-24/+17
|
* #if COMPILE_DLSascha Schumann2000-05-021-2/+2
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Moving module to the high-performance API & fixing it for PHP4.Jouni Ahto2000-04-302-149/+136
|
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* # Reaching alpha status with this module...Jouni Ahto2000-04-182-177/+231
|
* phpinfo() prettyingColin Viebrock2000-04-061-5/+7
|
* a better way, i've been told (thanks)Colin Viebrock2000-04-061-9/+4
|
* More phpinfo() prettying.Colin Viebrock2000-04-061-19/+26
| | | | | | | Can someone check my code for the interbase support, and I need someone else to decode the LDAP stuff ... it's beyond me.
* # Compiles. Doesn't work yet. Unless leaking memory counts as 'working'.Jouni Ahto2000-03-122-728/+2337
| | | | | # Trying to finish before RC1...
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* - Convert 'PHP3' to 'PHP'Zeev Suraski2000-02-261-3/+3
| | | | | - Avoid declaring crypt() related salt types twice
* More protos.Egon Schmid2000-02-231-8/+8
|
* Get the license right... (this won't make it to RC1 of B4)Zeev Suraski2000-02-191-2/+2
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* Whoops, defining them to empty values generates many parse errors.Sascha Schumann1999-12-301-1/+1
| | | | | Defaulting to 1.
* Get rid of config.h.stub. Note that you should embed a comment aboutSascha Schumann1999-12-302-4/+1
| | | | | | | what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
* Integration of -ng changes. Changes:Sascha Schumann1999-12-302-5/+10
| | | | | | | | | | | | - added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
* More php3_ cleanupZeev Suraski1999-12-172-97/+97
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-172-2/+2
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* More php3_ annihilationZeev Suraski1999-12-171-17/+17
|
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-042-2/+2
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* Remove the extra INCLUDES line from most automake Mafiles. This is notSascha Schumann1999-11-131-1/+0
| | | | | | | | | necessary, because we can change the value of INCLUDES globally in one place (configure.in). Also add two defines in thread-safe mode (_REENTRANT and POSIX_PTHREAD_SEMANTICS)
* * archive-based convenience libraries completely replacedSascha Schumann1999-10-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature
* *** empty log message ***Zeev Suraski1999-09-041-2/+2
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-41/+41
| | | | | php3_compat.h)
* More symbol work.Andrey Hristov1999-08-022-22/+23
|
* License updateZeev Suraski1999-07-161-21/+9
|
* - run ext sources through conv_protoSascha Schumann1999-05-212-23/+25
| | | | | - add necessary phpext_*_ptr
* * Get Apache to work. POST doesn't work yet.Zeev Suraski1999-05-111-1/+1
| | | | | | | * There are now -I directives for the absolute path of php4, php4/libzend and the builddir for the Apache module, so we can #include any php/Zend header. * Rename config.h to php_config.h
* * Finalizing the PHP version of SAPI. Support POST and cookies among other ↵Zeev Suraski1999-05-092-2/+2
| | | | | | | | | | | | | things. * Fully implement ISAPI support - POST and cookies among other things. * Almost completely rewrote phpinfo(). Allow modules to easily display their information in phpinfo() without modifying phpinfo() itself (prototype for the module info function was changed, thus the large amount of updated module files). * Initial extended SAPI support for Apache, completely untested. * CGI now uses SAPI fully as well.
* last bunch of extensions moving to ext/Stig Bakken1999-04-226-0/+1282
fhttpd module taken out of functions, functions is ready to go. The only extensions I have tested are gd+freetype and odbc(solid). Please try compiling in your favourite extensions and let me know how it works.