Christopher Jones
35c47c58df
Update for PECL upload that is synced with PHP 5.3.4
2010-12-10 04:36:29 +00:00
Christopher Jones
24c87d760d
Remove OCI8 devel status in preparation for PHP 5.3.4 release
2010-12-01 23:30:28 +00:00
Christopher Jones
c8462df127
Remove unreverted duplicate fix for nulls
2010-11-20 01:29:03 +00:00
Pierre Joye
ff26185322
- revert part of the null fix, was already applied by Chris
2010-11-18 16:16:26 +00:00
Pierre Joye
ce96fd6b07
- fix #39863 , do not accept paths with NULL in them. See http://news.php.net/php.internals/50191 , trunk will have the patch later (adding a macro and/or changing (some) APIs. Patch by Rasmus
2010-11-18 15:22:22 +00:00
Christopher Jones
2bc233e856
Improve test cross- DB version portability
2010-11-16 20:50:29 +00:00
Christopher Jones
2ea52b1fb4
Protect against null bytes in LOB filenames (rasmus)
2010-11-16 19:33:31 +00:00
Christopher Jones
f4b2664e2c
Prepare for PECL OCI8 1.4.4
2010-11-10 19:08:13 +00:00
Christopher Jones
29bdf30880
Improve startup failure error messages
2010-11-10 18:59:56 +00:00
Christopher Jones
7a42845d80
Fixed bug #53284 (Valgrind warnings in oci_set_* functions)
2010-11-10 18:49:55 +00:00
Christopher Jones
2bf58d8c70
Improve test portability
2010-11-10 18:46:05 +00:00
Kalle Sommer Nielsen
8deefa8780
Changed deprecated ini options on startup from E_WARNING to E_DEPRECATED ( Fixes #52570 )
...
# Trunk patch will follow shortly
2010-08-11 21:12:18 +00:00
Christopher Jones
d0dc4810eb
Fixed bug #51610 (Using oci_connect causes PHP to take a long time to exit). Do PECL OCI8 1.4.3 release
2010-08-07 00:24:26 +00:00
Christopher Jones
a59ffde6bc
Release PECL OCI8 1.4.2
2010-08-06 22:12:48 +00:00
Christopher Jones
22458ed4d5
Remove hard coded lib extension. Prepare for OCI8 1.4.2 release
2010-06-25 21:18:09 +00:00
Christopher Jones
86544f5971
Fix bug #52186 (phpinfo shows 10.1 or 11.1 when installed with ORACLE_HOME 10.2 or 11.2)
2010-06-25 21:09:13 +00:00
Pierre Joye
55320ca1b8
- fix build (declaration must be first)
2010-05-03 19:29:05 +00:00
Christopher Jones
c033a81b50
Bug #51691 (Unnecessary realloc causes crashes in PHP trunk tests with interned strings). Updated tests check some other edge cases
2010-04-29 05:07:16 +00:00
Christopher Jones
9b3e080098
Mask schemaname in error messages
2010-04-28 17:26:59 +00:00
Christopher Jones
eb0a3ff1af
Initialize vars to prevent valgrind warnings in some cases
2010-04-24 00:44:56 +00:00
Christopher Jones
a812818670
Fixed Bug #51577 (Uninitialized memory reference with oci_bind_array_by_name)
2010-04-16 20:36:40 +00:00
Christopher Jones
e79a8d440e
Merge Kalle's tidy-up from trunk to keep files in sync
2010-04-16 19:47:23 +00:00
Christopher Jones
3e58dee19a
Fix #51220 by adding . Also improve reliability for tests using undefined behavior.
2010-03-26 19:38:26 +00:00
Christopher Jones
1a6f4efbad
Fixed bug #51291 (oci_error doesn't report last error when called two times)
2010-03-24 22:08:55 +00:00
Christopher Jones
ec3a46e194
name changes for consistency with planned additions
2010-03-22 22:37:20 +00:00
Christopher Jones
825d1abdfe
Update oci_commit tests
2010-03-16 23:13:50 +00:00
Christopher Jones
1c6ea06c73
New OCI8 test
2010-03-13 00:25:11 +00:00
Christopher Jones
777d61c203
Mask resource numbers
2010-03-03 19:12:04 +00:00
Christopher Jones
373dd4d0d8
Release PECL OCI8 1.4.1
2010-02-11 22:43:54 +00:00
Christopher Jones
218eba34ee
Bump version in early preparation for release
2010-01-12 19:12:49 +00:00
Christopher Jones
679b228391
Bug #47281 ( is limited in size of characters). Also remove redundant code line.
2010-01-07 23:59:20 +00:00
Christopher Jones
5e8e34bac8
Fixed bug #49560 (oci8: using LOBs causes slow PHP shutdown)
...
- Improved descriptor refcounting to remove unneeded items sooner
- Replaced n^2 list traversal during descriptor list destruction
2010-01-06 18:58:16 +00:00
Sebastian Bergmann
9ba1e81665
sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php
2010-01-03 09:23:27 +00:00
Christopher Jones
1aebd220f8
Add new 'fetch' test and make several small test fixes
2009-12-10 19:07:08 +00:00
Christopher Jones
e435285b39
Remove text recently merged to online doc
2009-12-10 17:28:19 +00:00
Christopher Jones
4e010297f1
New test
2009-11-19 17:44:46 +00:00
Christopher Jones
ebb7a0d077
Refactor test
2009-11-19 16:49:58 +00:00
Christopher Jones
5fc8120bd6
New test
2009-11-14 23:28:53 +00:00
Christopher Jones
d91f464e00
Add test for long fixed bug
2009-11-10 22:48:37 +00:00
Christopher Jones
264d6db5a6
bump ver
2009-10-06 23:21:11 +00:00
Christopher Jones
2769ae0444
1. Introduce connection attribute functions:
...
oci_set_module_name
oci_set_action
oci_set_client_info
oci_set_client_identifier
These functions set values that are visible and used by the
database. They aid tracing, authentication and auditing.
2. Introduce connection attribute function:
oci_set_edition
Oracle 11g R2 "editions" allow multiple versions of DB objects
to exist at one time. By setting different editions, two
different versions of an application can run concurrently,
making upgrades or A/B testing easier.
3. Introduce OCI_NO_AUTO_COMMIT as an alias for the OCI_DEFAULT
constant (which is not the default value) used by oci_execute().
4. Allow the oci_set_prefetch value to be 0. This is important in
some cases using REF CURSORS in Oracle 11gR2.
5. Set the DRIVER_NAME attribute of Oracle Database 11gR2
connections to aid application tracing. The value used is to
"PHP OCI8" followed by the OCI8 version number. Note the
version number may get truncated in DB views such as
v$session_connect_info.
6. Generate an error if an invalid resource type is used in
oci_bind_by_name
[DOC] Documentation will be added for the changes
2009-10-06 22:36:32 +00:00
Christopher Jones
76b321c350
Fix odd little diff in some environments. No need for trunk merge
2009-10-05 22:57:48 +00:00
Christopher Jones
7c7cc5d785
Fix diff when full connection string used. Clean up helper files
2009-10-05 22:51:21 +00:00
Christopher Jones
2d64d1ff72
Oracle 11.2 (and beyond) compat changes
2009-10-02 22:39:28 +00:00
Christopher Jones
de0592a3a3
refactor tests
2009-10-02 20:16:59 +00:00
Christopher Jones
460a4ceaff
Fix skipifs to accept Oracle 11.2
2009-10-02 04:19:48 +00:00
Christopher Jones
8f65525ce6
Add xmltype_02.phpt. Add XFAIL to xmltype_01 for PHP 6
2009-10-01 06:22:32 +00:00
Christopher Jones
8fca6e46eb
Eliminate type warnings. This change is not needed in other branches
2009-10-01 06:06:41 +00:00
Christopher Jones
609804cd44
PECL Bug #16842 (oci_error return false when NO_DATA_FOUND is raised)
2009-10-01 05:51:11 +00:00
Dmitry Stogov
7bfe056174
Fixed tests
2009-09-21 09:52:19 +00:00