summaryrefslogtreecommitdiff
path: root/ext/oracle
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix build on systems which lack snprintf or vsnprintf.Sascha Schumann2000-03-121-1/+0
| | | | | PR: #3786
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* More protos.Egon Schmid2000-02-231-3/+2
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* #if WIN.* => #ifdef PHP_WIN32Sascha Schumann2000-02-121-2/+2
| | | | | #if !(WIN.* => #ifndef PHP_WIN32
* Define phpext_oracle_ptr properly.Andrei Zmievski2000-02-111-1/+1
|
* fix compileThies C. Arntzen2000-02-051-17/+17
|
* RETURN_NULL -> RETURN_NULL() // we don't want macros without an argumnetThies C. Arntzen2000-01-191-1/+1
|
* @- Ora_GetColumn()/Ora_FetchInto() now return NULL for NULL-Columns. (Thies)Thies C. Arntzen2000-01-181-6/+7
| | | | | also changed return-type for list-dtor
* 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).
* fix AC_DEFINEThies C. Arntzen1999-12-301-2/+0
|
* 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-5/+3
| | | | | | | 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-303-6/+12
| | | | | | | | | | | | - 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.
* - The tree compiles againZeev Suraski1999-12-181-25/+25
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-172-3/+3
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* small cleanups in MINIT codeThies C. Arntzen1999-12-092-26/+5
| | | | | OCIInitialize is now called at the "right" spot again
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-042-4/+4
| | | | | | .*\.[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)
* IRIX ld likes this order betterThies C. Arntzen1999-11-091-1/+1
|
* new improved resource-API (i hope everything still compiles)Thies C. Arntzen1999-10-121-40/+27
|
* fixed ora_close againThies C. Arntzen1999-10-051-23/+9
|
* * 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
* init in thread-safe mode if ZTS isdefinedThies C. Arntzen1999-09-281-1/+1
|
* fixed startup-deadlock.Thies C. Arntzen1999-09-281-2/+0
|
* use getParameterExThies C. Arntzen1999-09-241-156/+157
|
* tiny optimisationThies C. Arntzen1999-09-231-1/+1
|
* Ora_Fetch_Into now resets the returned array in all casesThies C. Arntzen1999-09-231-9/+10
|
* fixed NULL columnThies C. Arntzen1999-09-232-68/+68
| | | | | cleanups
* i always forget something;-)Thies C. Arntzen1999-09-221-10/+2
|
* fixed Ora_PLogon (rewrote ora_do_logon using php_mysql.c)Thies C. Arntzen1999-09-222-297/+180
| | | | | oracle_hack.c should no longer be needed!
* resourcified OracleThies C. Arntzen1999-09-221-120/+53
|
* Added detection of Oracle 8.1 (aka 8i) from PHP3.Stefan Roehrich1999-09-031-1/+10
|
* ZTSThies C. Arntzen1999-08-182-20/+48
|
* some ZTS stuffThies C. Arntzen1999-08-181-2/+7
|
* ZTS stuffThies C. Arntzen1999-08-172-154/+121
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-95/+95
| | | | | php3_compat.h)
* Fix function declarations.Andrey Hristov1999-08-021-23/+23
|
* More symbol work.Andrey Hristov1999-08-022-84/+85
|
* License updateZeev Suraski1999-07-161-20/+9
|
* par with 3.0Thies C. Arntzen1999-07-121-41/+28
|
* Don't touch refcount and EA directlyZeev Suraski1999-07-091-2/+1
|
* Step 2:Zeev Suraski1999-07-091-1/+1
| | | | | Rename is_ref to EA
* added RESOURCE-returningThies C. Arntzen1999-07-051-3/+3
|
* synced with 3.0.11Thies C. Arntzen1999-06-292-125/+237
| | | | | ora_bind works!
* - run ext sources through conv_protoSascha Schumann1999-05-212-47/+47
| | | | | - add necessary phpext_*_ptr
* move oci8 from oracle to it's own ext-directory - configure stuff needs more ↵Thies C. Arntzen1999-05-124-3802/+1
| | | | work - but it configures and compiles
* builds and configures againThies C. Arntzen1999-05-122-1/+2
|
* * Finalizing the PHP version of SAPI. Support POST and cookies among other ↵Zeev Suraski1999-05-093-4/+4
| | | | | | | | | | | | | 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.
* forward port of current oracle.c + fixes to make it actually work;-)!!!Thies C. Arntzen1999-04-302-87/+217
|