summaryrefslogtreecommitdiff
path: root/ext/oci8
Commit message (Collapse)AuthorAgeFilesLines
* Improve class entry generationMáté Kocsis2021-02-161-3/+2
| | | | Related to GH-6701
* Fix failures due to new deprecationsChristopher Jones2021-02-1512-18/+32
|
* Generate class entries from stubs for oci8, odbc, openssl, pcntl, pdo, pgsqlMáté Kocsis2021-02-143-10/+25
| | | | Closes GH-6691
* Merge branch 'PHP-8.0'Nikita Popov2021-02-021-1/+1
|\ | | | | | | | | * PHP-8.0: Update year to 2021
| * Merge branch 'PHP-7.4' into PHP-8.0Nikita Popov2021-02-021-1/+1
| |\ | | | | | | | | | | | | * PHP-7.4: Update year to 2021
| | * Update year to 2021Peter Kokot2021-02-021-1/+1
| | | | | | | | | | | | Closes GH-6636.
* | | Replace zend_bool uses with boolNikita Popov2021-01-154-18/+18
| | | | | | | | | | | | | | | | | | | | | We're starting to see a mix between uses of zend_bool and bool. Replace all usages with the standard bool type everywhere. Of course, zend_bool is retained as an alias.
* | | Make convert_to_*_ex simple aliases of convert_to_*Nikita Popov2021-01-141-2/+2
|/ / | | | | | | | | | | | | | | | | | | | | | | | | Historically, the _ex variants separated the zval first, if a conversion was necessary. This distinction no longer makes sense since PHP 7. The only difference that was still left is that _ex checked whether the type is the same first, but the usage of these macros did not actually distinguish on whether such an inlined check is valuable or not in a given context. Also drop the unused convert_to_explicit_type macros.
* | Description typoChristopher Jones2020-12-211-1/+1
| |
* | Bundle PECL OCI8 3.0.1Christopher Jones2020-12-213-17/+34
| |
* | Add Windows support for OCI 19Christoph M. Becker2020-12-143-1/+57
| | | | | | | | As requested by Christopher Jones.
* | Update PECL package release dateChristopher Jones2020-11-271-1/+1
| |
* | Fix test diffChristopher Jones2020-11-251-3/+3
| |
* | Sync README with package.xmlChristopher Jones2020-11-241-7/+9
| |
* | Verify parameter names of function aliasesMáté Kocsis2020-10-163-17/+11
| | | | | | | | Closes GH-6335
* | Improve parameter names in ext/oci8Máté Kocsis2020-10-086-360/+288
| | | | | | | | Closes GH-6267
* | Run tidyNikita Popov2020-09-1814-14/+14
| | | | | | | | | | This should fix most of the remaining issues with tabs and spaces being mixed in tests.
* | Generate arginfosMáté Kocsis2020-09-161-2/+2
| |
* | Display string default values in stubs more uniformlyMáté Kocsis2020-09-161-6/+6
| | | | | | | | Settling on using quoted string
* | Display types in stubs more uniformlyMáté Kocsis2020-09-162-3/+3
| | | | | | | | | | | | In preparation for generating method signatures for the manual. This change gets rid of bogus false|null return types, a few unnecessary trailing backslashes, and settles on using ? when possible for nullable types.
* | Promote some warnings to ValueError in OCI8George Peter Banyard2020-09-1513-137/+160
| | | | | | | | | | | | Closes GH-6116 Co-authored-by: Christopher Jones <sixd@php.net>
* | Improve error messages mentioning parameters instead of argumentsMáté Kocsis2020-09-091-1/+1
| | | | | | | | Closes GH-5999
* | Fix 3b0fecd and resulting test fail lob_012.phptChristopher Jones2020-09-091-1/+1
| |
* | Fix UNKNOWN default values in ext/oci8Máté Kocsis2020-09-084-82/+67
| | | | | | | | Closes GH-6089
* | Catch type errors so test completes and doesn't diffChristopher Jones2020-09-081-24/+30
| |
* | Accept updated error number generated by the latest Oracle versionChristopher Jones2020-09-081-1/+1
| |
* | Yes, and mask the dir path too.Christopher Jones2020-09-081-2/+2
| |
* | Fix parsing regression from PHP 7Christopher Jones2020-09-082-6/+16
| |
* | Move custom type checks to ZPPMáté Kocsis2020-09-022-2/+2
| | | | | | | | Closes GH-6034
* | Add more precise type info for stubsMáté Kocsis2020-09-012-23/+12
| | | | | | | | Closes GH-6005
* | Drop various unused macros/APIsGeorge Peter Banyard2020-08-261-1/+1
| | | | | | | | | | | | Also convert_libmagic_pattern() to return a zend_string* Closes GH-6029
* | Squash a Linux compile warningChristopher Jones2020-08-221-2/+2
| |
* | OCI8 classes were already renamed in 8; this now follows the new-new standardChristopher Jones2020-08-2145-234/+234
| |
* | Add many missing closing PHP tags to testsMáté Kocsis2020-08-091-0/+1
| | | | | | | | Closes GH-5958
* | Make test decimal to binary conversion expectation more tolerantChristopher Jones2020-07-232-4/+4
| |
* | Fix cut/paste error in expected test outputChristopher Jones2020-07-231-1/+0
| |
* | Use ZPP callable check for oci_register_taf_callback()George Peter Banyard2020-07-223-18/+13
| |
* | Some cleanup in OCI8 extension for PHP 8George Peter Banyard2020-07-228-80/+9
| |
* | Rename OCI8 classes to use standard names so arg stub parsing worksChristopher Jones2020-07-2044-113/+118
| |
* | Bump OCI8 version to 3.0 so a PHP 8 PECL release can be madeChristopher Jones2020-07-204-51/+54
| |
* | Removed the "oci_internal_debug" function and its alias. Also deprecated the ↵Jens de Nies2020-07-118-1009/+3
| | | | | | | | | | | | "ocifetchinto" function. Closes GH-5810
* | Remove proto comments from C filesMax Semenik2020-07-062-164/+82
| | | | | | | | Closes GH-5758
* | Added stubs for ext/oci8Jens de Nies2020-07-045-784/+1652
| | | | | | | | Closes GH-5701
* | Replace EXPECTF when possibleFabien Villepinte2020-06-295-7/+7
| | | | | | | | Closes GH-5779
* | Made sure zpp is always called and refactored some existing zpp calls.Jens de Nies2020-06-161-262/+124
| | | | | | | | Closes GH-5714
* | Fixed some oci8 tests.Jens de Nies2020-06-1625-324/+110
| | | | | | | | Closes GH-5716
* | Fix ZPP of OCI_Lob::freeMáté Kocsis2020-06-131-5/+3
| |
* | Deprecate function aliases in oci8 extension.Jens de Nies2020-06-0864-2169/+332
| | | | | | | | Closes GH-5589
* | Remove some uses of zend_inline_hash_funcNikita Popov2020-05-151-2/+2
| | | | | | | | There's no need to force-inline the hashing for all of these.
* | Improve undefined variable error messagesMáté Kocsis2020-03-311-1/+1
| | | | | | | | Closes GH-5312