|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-01 07:12 UTC] tony2001@php.net
[2006-05-02 06:27 UTC] xfree at inbox dot lv
[2006-05-08 04:43 UTC] cjbj at hotmail dot com
[2006-05-29 09:19 UTC] tony2001@php.net
[2006-06-06 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 16:00:01 2025 UTC |
Description: ------------ Oci_new_collection crash Apache Web Server running on Windows XP. Then I calling this function - Apache just stops, with windows like error message “Apache service raise an error and will be closed.” Configuration is following: PHP 5.1.2. Apache 2.0.55. Oracle Database 10.1.3. phpinfo() shows: Temporary Lob support enabled Collections support enabled. Collection type is very simple: create or replace type myCollection as table of varchar2(4000); / Reproduce code: --------------- // connect to ora $lora_conn = oci_connect(_LOGIN, _PASSWD, _TNSNAME); if ($lora_conn) { $lora_coll = oci_new_collection($lora_conn, 'myCollection'); //... } Actual result: -------------- Apache service crash.