summaryrefslogtreecommitdiff
path: root/ext/oci8
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* - Change some open's to V_OPEN()'sAndi Gutmans2000-04-301-2/+2
|
* 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)
* compile fixThies C. Arntzen2000-04-281-2/+2
|
* using vi to update DevStudio Files, yeah!Thies C. Arntzen2000-04-271-4/+4
|
* .Thies C. Arntzen2000-04-271-7/+1
|
* allow oci8 to be build as loadable module.Thies C. Arntzen2000-04-273-138/+80
|
* .Thies C. Arntzen2000-04-241-1/+1
|
* enabel PDBThies C. Arntzen2000-04-241-4/+4
|
* fix warningThies C. Arntzen2000-04-241-1/+1
|
* moving pointers to header and library files to match php_build structureFrank M. Kromann2000-04-231-4/+4
|
* *** empty log message ***Thies C. Arntzen2000-04-212-0/+142
|
* make it compile on Win32Thies C. Arntzen2000-04-211-2/+2
|
* @- OCIBindByName() will no longer complain about bindlength beeing zero. (Thies)Thies C. Arntzen2000-04-211-4/+4
|
* phpinfo() prettyingColin Viebrock2000-04-061-4/+9
|
* no c++ comments // pleaseThies C. Arntzen2000-03-261-1/+5
|
* One space character is enough.Egon Schmid2000-03-141-2/+2
|
* Thies, please check the function names and descriptions.Egon Schmid2000-03-141-33/+71
|
* Fix build on systems which lack snprintf or vsnprintf.Sascha Schumann2000-03-121-1/+0
| | | | | PR: #3786
* (OCILogon) fixed crash in OCILogon if username was not valid (newly ↵Thies C. Arntzen2000-03-091-1/+1
| | | | introduced - no need for a NEWS entry)
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.
* @- OCINLogon() sessions are now closed again. (Thies)Thies C. Arntzen2000-03-062-7/+9
| | | | | # happy hacking in hongkong!
* Added functions to retrieve scale, precision and raw oracle data type forJoe Martin2000-03-032-2/+114
| | | | | columns.
* @- OCINLogon no longer crashes. (Thies)Thies C. Arntzen2000-03-011-0/+1
|
* out of space in private (brain) memory;-)Thies C. Arntzen2000-02-271-0/+1
|
* just so that i don't forgetThies C. Arntzen2000-02-271-0/+2
|
* Thies, it looks now a little bit better.Egon Schmid2000-02-231-82/+56
| | | | | Please correct my dummy entries.
* @- Fixed OCI8 crash when returning cursors from stored-procedures. (Thies)Thies C. Arntzen2000-02-221-1/+1
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* *** empty log message ***Zeev Suraski2000-02-191-1/+1
|
* #if WIN.* => #ifdef PHP_WIN32Sascha Schumann2000-02-121-1/+1
| | | | | #if !(WIN.* => #ifndef PHP_WIN32
* SAPIfication, Episode VI: Return of the SAPIZeev Suraski2000-02-101-1/+1
| | | | | | | | | | | | | | | Remove mostly all references to APACHE and CGI_BINARY from the code. - Apache include files are no longer included by any PHP code, except for the Apache SAPI module. - No server specific code is in any of the base PHP code. Still left to be done: - Eliminate any references to APACHE from the few remaining modules. - Move request_info.c's logic to SAPI - Modify the regex function names, and globals, so that we can always include them, without having to fear any interference with Apache; Always use the bundled regex library
* kill warningThies C. Arntzen2000-02-071-29/+30
| | | | | @- Fixed some OCIBindByName() problems. (Thies)
* make it work without the zend_hash_pointer*() functions. some work on the ↵Thies C. Arntzen2000-02-012-138/+181
| | | | shutdown issues (more to follow)
* @- OCI8 now supports binding of NULL-values. Module cleanups. (Thies)Thies C. Arntzen2000-01-162-604/+617
| | | | | | | | | lots of cleanup - all invisible to the user (i hope;-) - full refcounting of connections & statements - cleanup of the descriptor-code (descriptors are now real resources) - we now use SQLT_CHR instead of SQLT_STR (no trailing \0) - smarter & faster - ocifetchinto(OCI_BOTH) will use references.
* 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-5/+2
|
* 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-7/+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-7/+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.
* digital cc doe not like whitespaces before a # markThies C. Arntzen1999-12-231-4/+4
|
* Enable --with-oci8 to use relative paths as input parametersSascha Schumann1999-12-221-1/+1
|
* - The tree compiles againZeev Suraski1999-12-181-34/+34
|
* More php3_ cleanupZeev Suraski1999-12-171-3/+3
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-172-5/+5
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* More php3_ annihilationZeev Suraski1999-12-171-2/+2
|
* More php3_ annihilationZeev Suraski1999-12-171-2/+2
|
* small cleanups in MINIT codeThies C. Arntzen1999-12-092-32/+15
| | | | | OCIInitialize is now called at the "right" spot again
* @- OCI8 now returns NULL values in LONG columns correct. (Thies)Thies C. Arntzen1999-12-081-3/+3
|
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-042-1/+1
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.