Re: [PHP] PHP 4.3.0 with Oracle

2003-01-09 Thread Thies C. Arntzen
On Wed, Jan 08, 2003 at 04:38:25PM -0200, José Manuel Valente wrote: > Hy Guys, > > I´m a newby here. > > I´am trying to compile PHP 4.3.0 with Oracle support. When it > compiles oci8.c , it returns an error, like follows: > > /bin/sh libtool --silent --mode=compile > gcc -Iext

Re: [PHP] Php, Blob, Oracle

2003-02-27 Thread Thies C. Arntzen
)){ > $displaypage =$displaypage. > " > > ".$row["blobcolumn"].""; ".$row["BLOBCOLUMN"].""; > >}; > $displaypage=" > <\table>"; > r

Re: [PHP] Oracle persistent connection limit

2002-07-23 Thread Thies C. Arntzen
On Tue, Jul 23, 2002 at 11:00:43AM -0700, Eric Thelin wrote: > Is there a way to limit the total number of persistent connection to an > oracle database? I know this functionality exists for MySQL through a > setting in the php.ini but I haven't found it for oracle. I am in an > environment wher

Re: [PHP] Oracle persistent connection limit

2002-07-23 Thread Thies C. Arntzen
ting a new session over an already established link is still fast) - not use oracle (just kidding;-) or, do you have any better ideas? re, tc > > Eric > > On Tue, 23 Jul 2002, Thies C. Arntzen wrote: > > > On Tue, Jul 23, 2002 at 11:00:43AM -0700, Er

Re: [PHP] 4.04 --> 4.1.2 incompatible

2002-08-20 Thread Thies C. Arntzen
On Tue, Aug 20, 2002 at 11:28:55AM +0200, Petre Agenbag wrote: > Hi > Can someone please tell me what settings to check for on 4.1.2 in order > to ensure that scripts that runs on 4.0.4 will run on 4.1.2? > > I HAVE checked registered_globals = on, but I still get variables that > are not passed

Re: [PHP] 4.04 --> 4.1.2 incompatible

2002-08-20 Thread Thies C. Arntzen
> On Tue, 2002-08-20 at 11:52, Thies C. Arntzen wrote: > > On Tue, Aug 20, 2002 at 11:28:55AM +0200, Petre Agenbag wrote: > > > Hi > > > Can someone please tell me what settings to check for on 4.1.2 in order > > > to ensure that scripts that runs on 4.0.4 will

Re: [PHP] Oracle connection release

2002-09-18 Thread Thies C. Arntzen
On Wed, Sep 18, 2002 at 02:48:13PM +0200, Rasmus Sellberg wrote: > Does PHP release the Oracle connection if I run PHP from the command line? yes tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] OSCON: anybody interested in my Oracle talk?

2002-06-26 Thread Thies C. Arntzen
hi, seems like oreilley will cancel my tutorial about PHP and Oracle at OSCON in san diego as there are not enough ppls interested. so - if you go to oscon, and if you are interested in that subject _and_ if you have not decided to sign up for my tutorial - hurry up

Re: [PHP] PHP Oracle 8 Functions Efficiency Problem

2002-06-29 Thread Thies C. Arntzen
On Thu, Jun 27, 2002 at 11:09:23AM -0600, notoriousvic_ca wrote: > I have an HTML form which allows users to query data in an Oracle 8 > Database. Usualy a search may return over 100 records so I diplay 10 > records per page. I would like to make the search more efficient by > using the OCISetPre

[PHP-CVS] cvs: php4 /ext/standard exec.c

2001-01-10 Thread Thies C. Arntzen
thies Wed Jan 10 05:08:14 2001 EDT Modified files: /php4/ext/standard exec.c Log: exec'd processes now get cleaned up even if the browser connections was aborted. fixes: #8143 Index: php4/ext/standard/exec.c diff -u php4/ext/standard/exec.c:1.44 php

Re: [PHP] iptc fields

2001-01-10 Thread Thies C. Arntzen
On Wed, Jan 10, 2001 at 02:31:48PM +0100, Markus H. Maussner wrote: > hi.. > > is there a solution how i can get all iptc fields out of an immage ? > > i tried the 'iptcparse' command wich works quiet well.. just that anny > commas are taken out.. > like from the original field > 'red,dog,cat'

[PHP-CVS] cvs: php4 /ext/standard file.c

2001-01-14 Thread Thies C. Arntzen
thies Sun Jan 14 06:11:38 2001 EDT Modified files: /php4/ext/standard file.c Log: fixed readfile() fd-leak. guys, always remember that every function that *generates output* could cause a bailout if ignore_user_abort is set to false (and the user _aborts

Re: [PHP] GetImageSize problem

2001-01-21 Thread Thies C. Arntzen
On Sun, Jan 21, 2001 at 03:05:31PM +, Sue Bailey wrote: > I have a bunch of images living on one ISP's server which I want to use > on another page on another ISP's server, with GetImageSize. I RTFM, and > see "The filename needs to be either relative to the current document, > or an absolute

[PHP-CVS] cvs: php4 / NEWS

2001-01-23 Thread Thies C. Arntzen
thies Tue Jan 23 07:30:32 2001 EDT Modified files: /php4 NEWS Log: #found this by playing with phpMyAdmin. Index: php4/NEWS diff -u php4/NEWS:1.569 php4/NEWS:1.570 --- php4/NEWS:1.569 Mon Jan 22 18:09:09 2001 +++ php4/NEWS Tue Jan 23 07:30:27 2

[PHP-CVS] cvs: php4 /ext/imap php_imap.c

2001-02-21 Thread Thies C. Arntzen
thies Wed Feb 21 12:33:46 2001 EDT Modified files: /php4/ext/imap php_imap.c Log: fix possible leak. Index: php4/ext/imap/php_imap.c diff -u php4/ext/imap/php_imap.c:1.56 php4/ext/imap/php_imap.c:1.57 --- php4/ext/imap/php_imap.c:1.56 Sun Feb 18

Re: [PHP-CVS] cvs: php4 /ext/midgard midgard.c

2001-02-22 Thread Thies C. Arntzen
On Thu, Feb 22, 2001 at 01:26:45PM +0200, Andi Gutmans wrote: > You only have the module globals during requests (rinit/rshutdown). You > can't access them in module init/module shutdown. could you explain why? ok the the midgard PHP_MINIT_FUNCTION does not allocate a tsrm_id for the mod

Re: [PHP-CVS] cvs: php4 /ext/midgard midgard.c

2001-02-22 Thread Thies C. Arntzen
NCTION(assert) { #ifdef ZTS assert_globals_id = ts_allocate_id(sizeof(php_assert_globals), (ts_allocate_ctor) php_assert_init_globals, NULL);#else php_assert_init_globals(ASSERTLS_C); #endif stupid me... tc > > Andi > > At 12:34 PM 2/22/2001 +0100, Thies C. Arntzen wrote: &g

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c

2001-03-02 Thread Thies C. Arntzen
thies Fri Mar 2 01:12:55 2001 EDT Modified files: /php4/ext/oci8 oci8.c Log: @- Fixed binding of ROWIDs in OCI8. (Thies) Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.112 php4/ext/oci8/oci8.c:1.113 --- php4/ext/oci8/oci8.c:1.112 Tue Feb

Re: [PHP] PHP w/ Oracle OCI8 - how stable?

2001-03-20 Thread Thies C. Arntzen
On Tue, Mar 20, 2001 at 07:20:35AM -0500, Hardy Merrill wrote: > I configured PHP --with-oci8=/path/to/oracle/home, and I'm seeing > "flaky" behavior when I restart Oracle without restarting the > web server - ORA-03113 and ORA-03114 errors all over. Then when > I restart the webserver everything

[PHP-CVS] cvs: php4 /ext/qtdom config.m4

2001-03-20 Thread Thies C. Arntzen
thies Tue Mar 20 11:19:30 2001 EDT Modified files: /php4/ext/qtdom config.m4 Log: make qtdom compile on Mandrake-cooker Index: php4/ext/qtdom/config.m4 diff -u php4/ext/qtdom/config.m4:1.2 php4/ext/qtdom/config.m4:1.3 --- php4/ext/qtdom/config.m4:1.2

[PHP-CVS] cvs: CVSROOT / avail cvsusers

2001-04-14 Thread Thies C. Arntzen
thies Sat Apr 14 00:57:16 2001 EDT Modified files: /CVSROOTavail cvsusers Log: add Andy Sautins + karma for oci8 Index: CVSROOT/avail diff -u CVSROOT/avail:1.144 CVSROOT/avail:1.145 --- CVSROOT/avail:1.144 Thu Apr 12 09:35:40 2001 +++ CVSROOT/avail

[PHP-CVS] cvs: php4 /ext/oci8 CREDITS

2001-04-14 Thread Thies C. Arntzen
:1.1 Mon Nov 20 02:31:28 2000 +++ php4/ext/oci8/CREDITS Sat Apr 14 01:06:40 2001 @@ -1,2 +1,2 @@ OCI8 -Stig Bakken, Thies C. Arntzen +Stig Bakken, Thies C. Arntzen, Andy Sautins -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP-CVS] cvs: CVSROOT / avail

2001-04-14 Thread Thies C. Arntzen
thies Sat Apr 14 01:26:21 2001 EDT Modified files: /CVSROOTavail Log: some karma for the 2 new oci8 guys Index: CVSROOT/avail diff -u CVSROOT/avail:1.145 CVSROOT/avail:1.146 --- CVSROOT/avail:1.145 Sat Apr 14 00:57:16 2001 +++ CVSROOT/avail Sat A

[PHP-CVS] cvs: php4 /ext/oci8 CREDITS oci8.c

2001-04-14 Thread Thies C. Arntzen
/oci8/CREDITS:1.2 Sat Apr 14 01:06:40 2001 +++ php4/ext/oci8/CREDITS Sat Apr 14 01:38:46 2001 @@ -1,2 +1,2 @@ OCI8 -Stig Bakken, Thies C. Arntzen, Andy Sautins +Stig Bakken, Thies C. Arntzen, Andy Sautins, David Benson Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.115 php4/ext

[PHP-CVS] cvs: php4 /ext/oci8 config.m4 oci8.c oci8.dsp

2001-04-14 Thread Thies C. Arntzen
thies Sat Apr 14 02:51:29 2001 EDT Modified files: /php4/ext/oci8 config.m4 oci8.c oci8.dsp Log: enable temporary LOBs when we detect oracle 8.1 enabled by default in Win32 project! Index: php4/ext/oci8/config.m4 diff -u php4/ext/oci8/config.m4:1.26

[PHP-CVS] cvs: php4 / TODO-4.1.txt

2001-04-14 Thread Thies C. Arntzen
thies Sat Apr 14 03:30:05 2001 EDT Modified files: /php4 TODO-4.1.txt Log: . Index: php4/TODO-4.1.txt diff -u php4/TODO-4.1.txt:1.2 php4/TODO-4.1.txt:1.3 --- php4/TODO-4.1.txt:1.2 Fri Apr 13 16:52:15 2001 +++ php4/TODO-4.1.txt Sat Apr 14 03:3

[PHP-CVS] cvs: CVSROOT / avail

2001-04-17 Thread Thies C. Arntzen
thies Tue Apr 17 00:31:36 2001 EDT Modified files: /CVSROOTavail Log: fix my own karma Index: CVSROOT/avail diff -u CVSROOT/avail:1.146 CVSROOT/avail:1.147 --- CVSROOT/avail:1.146 Sat Apr 14 01:26:21 2001 +++ CVSROOT/avail Tue Apr 17 00:31:35 200

Re: [PHP] FastCGI and PHP

2001-04-20 Thread Thies C. Arntzen
On Wed, Apr 18, 2001 at 01:58:03PM +0200, Alexander Skwar wrote: > (Learning from my last mistake, I'll now try to make clear right away what > each sentence means *G*) > > Introductory lines: > I want to write a FastCGI compatible PHP script. In order to do so, PHP > obviously need to recompile

[PHP-CVS] cvs: CVSROOT / gen_acl_file.m4

2001-04-20 Thread Thies C. Arntzen
thies Fri Apr 20 23:48:43 2001 EDT Modified files: /CVSROOTgen_acl_file.m4 Log: give asautins,dbenson karma for oci8 and docs Index: CVSROOT/gen_acl_file.m4 diff -u CVSROOT/gen_acl_file.m4:1.150 CVSROOT/gen_acl_file.m4:1.151 --- CVSROOT/gen_acl_file.m4

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c

2001-04-23 Thread Thies C. Arntzen
thies Mon Apr 23 04:54:02 2001 EDT Modified files: /php4/ext/oci8 oci8.c Log: fixed ZTS buidl - still some WS pollution left Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.118 php4/ext/oci8/oci8.c:1.119 --- php4/ext/oci8/oci8.c:1.118 Thu

Re: [PHP] Detecting error in OCIExecute calls

2001-05-09 Thread Thies C. Arntzen
On Tue, May 08, 2001 at 03:01:58PM -0700, Robert Mena wrote: > Hi, I am accessing an oracle database from PHP using > stored procedures available. > > I'd like to detect when a problem occurs in order to > stop trying to fetch results. In mysql I check for > rc=0 as an error. The php doc does n

Re: [PHP] Has anyone tried to make telnet client with php?

2001-05-11 Thread Thies C. Arntzen
On Thu, May 10, 2001 at 08:28:59PM -0700, Grishick wrote: > Has anyone ever tried to make a telnet client with PHP? Any ideas how to > make it? > Tried to make it with socket, fsockopen, fputs, freads - does not work for > telnet. > Probably cURL will help? > Deadly need an advice. > Thanks. > Gri

Re: [PHP] PHP 4.0.5 - segmentation fault when using OCI8

2001-05-11 Thread Thies C. Arntzen
On Fri, May 11, 2001 at 06:51:35AM -0700, Robert Mena wrote: > Hi, I have a development machine with 4.0.4pl1 which > has been used for creating a set of scripts to access > oracle (using stored procedures). > > It seems to be working fine (the problems that I've > encountered seems to be related

Re: [PHP] PHP 4.0.5 - segmentation fault when using OCI8

2001-05-12 Thread Thies C. Arntzen
x40065000) > libdl.so.2 => /lib/libdl.so.2 (0x4009f000) > libpthread.so.0 => /lib/libpthread.so.0 > (0x400a4000) > libc.so.6 => /lib/libc.so.6 (0x400b7000) > /lib/ld-linux.so.2 => /lib/ld-linux.so.2 > (0x4000) > > - Thanks. > --- &

Re: [PHP] Object Reference Serialization

2002-05-02 Thread Thies C. Arntzen
On Fri, May 03, 2002 at 12:34:01AM +1200, Adam Langley wrote: > Hi everyone, > > Im trying to store an object which contains an associative array of classes, > each of which contains an array of classes, so a 3-tier hierachy, in the > session object. However, the final tier gets lost upon > seria

Re: [PHP] Database abstraction layer oci

2002-03-09 Thread Thies C. Arntzen
hi, the fastest and most powerful is always to use the native api. i would use the PHP oci driver. tc On Fri, Mar 08, 2002 at 09:00:17AM -0500, Andrew Hill wrote: > I suggest simply using ODBC. > > Best regards, > Andrew Hill > Director of Technology Evangelism > http://ww

Re: [PHP] Oracle ORA_ functions and blobs / clobs

2002-03-21 Thread Thies C. Arntzen
On Thu, Mar 21, 2002 at 12:33:13PM +1100, Bradley Goldsmith wrote: > Hi All, > > Is it possible to store/fetch blobs/clobs with the oracle (ORA not > OCI8) functions? no tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and Oracle

2002-03-26 Thread Thies C. Arntzen
On Mon, Mar 25, 2002 at 02:49:07PM -0500, Scarbrough, Jeb (ISS Atlanta) wrote: > Is it possible to create a transaction the involves multiple pages using PHP > and oracle. For example, can I log onto oracle using OCIPLogon on one page > named master, insert information, go to the next page named

Re: [PHP] Problems inserting single quote into Oracle database

2001-10-30 Thread Thies C. Arntzen
On Tue, Oct 30, 2001 at 09:54:19PM -0800, Hugh Danaher wrote: > I don't know if this will work for Oracle but try putting a backslash before > the single quote mark (e.g. it\'s) the ' should then taken as another > character by php. > Hope this works for you. single quotes are escaped using a

Re: [PHP] PHP with ORACLE 8i/9i

2001-11-16 Thread Thies C. Arntzen
On Fri, Nov 16, 2001 at 10:49:17AM +0100, Steve Haemelinck wrote: > Question: > > I want to build php withd support for ORACLE 8i or 9i. > Normally you use the option with-oci=. So far so good. > How can I achieve this when the oracle database is running on another > server? you need to ins

Re: [PHP] PHP + librairies OCI8 + IPlanet Web Server

2001-11-19 Thread Thies C. Arntzen
On Mon, Nov 19, 2001 at 12:54:05PM +0100, Damien LEBLANC wrote: > Hi, > >I have installed PHP 4.0.4pl1 on a Sun/OS 5.6 server with iPlanet Web > Server 4.1. I want to access to an Oracle database with the OCI8 > librairies. I have an Oracle client 8.1.5 installed on my server. > > I have r

Re: [PHP] PHP & Oracle9i

2001-11-20 Thread Thies C. Arntzen
On Tue, Nov 20, 2001 at 09:20:19PM +0100, Steve Haemelinck wrote: > Is it possible to use Oci-functions with Oracle 9i database ? yes. configure --with-oci8 should do the trick. tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: [PHP] How to compile PHP-4.1.0 or 4.0.6 with Oracle-9i ?

2001-12-11 Thread Thies C. Arntzen
On Tue, Dec 11, 2001 at 10:38:26PM +0700, Somsak RAKTHAI wrote: > Dear sir, > Now I install "Oracle-9i" running on RedHat-7.2. > > In php-4.0.6 and php-4.1.0 have option for Oracle-7 or 8 below. > > --with-oci8[=DIR] Include Oracle-oci8 support. Default DIR is >

Re: [PHP] Re: php telnet

2001-12-20 Thread Thies C. Arntzen
the attached file implements a minimal telnet client and is free to use. re, tc On Wed, Dec 19, 2001 at 02:16:36PM -0800, Chris Lee wrote: > if I nc to my server on port 23 I get the same thing. ie there is nothing > wrong. your going to have to emulate the telnet protocal now,

Re: [PHP-CVS] cvs: php4 / run-tests.php

2001-03-21 Thread Thies C. Arntzen
On Wed, Mar 21, 2001 at 12:52:33PM -, André Langhorst wrote: > andre Wed Mar 21 04:52:33 2001 EDT > > Modified files: > /php4 run-tests.php > Log: > win32 fixes again > > Index: php4/run-tests.php > diff -u php4/run-tests.php:1.18 php4/run-tests.php:1.1

Re: [PHP] oracle last inserted

2001-03-25 Thread Thies C. Arntzen
On Mon, Mar 26, 2001 at 10:19:28AM +0800, Chien-pin Wang wrote: > > If you use sequence to generate your last_inserted_id, then you can always > get that ID by calling > > SELECT sequence_name.CURRVAL > FROM DUAL; > > within the same session. re, tc > > Chien

[PHP-CVS] cvs: php4 /ext/oracle oracle.c

2001-03-27 Thread Thies C. Arntzen
thies Tue Mar 27 06:55:03 2001 EDT Modified files: /php4/ext/oracleoracle.c Log: fixed newly introduced crash in ora_bind Index: php4/ext/oracle/oracle.c diff -u php4/ext/oracle/oracle.c:1.60 php4/ext/oracle/oracle.c:1.61 --- php4/ext/oracle/oracle.c:1

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/oracle oracle.c

2001-03-27 Thread Thies C. Arntzen
thies Tue Mar 27 07:04:21 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/oracleoracle.c Log: MFH Index: php4/ext/oracle/oracle.c diff -u php4/ext/oracle/oracle.c:1.60 php4/ext/oracle/oracle.c:1.60.2.1 --- php4/ext/oracle/oracle.c:1.60 Sun

Re: [PHP-CVS] cvs: php4 /pear IT[X].xml package.dtd

2001-03-29 Thread Thies C. Arntzen
On Thu, Mar 29, 2001 at 09:54:27PM -, Ulf Wendel wrote: > uwThu Mar 29 13:54:27 2001 EDT > > Added files: > /php4/pearIT[X].xml are u sure that [] are valid characters on all filesystens? tc -- PHP CVS Mailing List (http://www.php.net/)

Re: [PHP-CVS] cvs: php4 /pear ITX.xml IT[X].xml

2001-03-30 Thread Thies C. Arntzen
On Fri, Mar 30, 2001 at 09:16:55AM -, Ulf Wendel wrote: > uwFri Mar 30 01:16:55 2001 EDT > > Added files: > /php4/pearITX.xml > > Removed files: > /php4/pearIT[X].xml > Log: > - Renamed the file following Thies sug

[PHP-CVS] cvs: php4 /ext/pgsql pgsql.c php_pgsql.h

2001-04-04 Thread Thies C. Arntzen
thies Wed Apr 4 14:40:41 2001 EDT Modified files: /php4/ext/pgsql pgsql.c php_pgsql.h Log: make it compile with 6.5.x postgresql notices are now send to the standard error-log Index: php4/ext/pgsql/pgsql.c diff -u php4/ext/pgsql/pgsql.c:1.95 php4/ex

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/pgsql pgsql.c php_pgsql.h

2001-04-04 Thread Thies C. Arntzen
thies Wed Apr 4 14:51:59 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/pgsql pgsql.c php_pgsql.h Log: MFH - make postgresql compiel against 6.5.x Index: php4/ext/pgsql/pgsql.c diff -u php4/ext/pgsql/pgsql.c:1.93.2.4 php4/ext/pgsql/pgsql.c:1.93

[PHP-CVS] cvs: CVSROOT / avail

2001-04-05 Thread Thies C. Arntzen
thies Thu Apr 5 16:25:45 2001 EDT Modified files: /CVSROOTavail Log: add karma Index: CVSROOT/avail diff -u CVSROOT/avail:1.139 CVSROOT/avail:1.140 --- CVSROOT/avail:1.139 Thu Apr 5 08:32:44 2001 +++ CVSROOT/avail Thu Apr 5 16:25:45 2001 @@ -5

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c

2001-04-11 Thread Thies C. Arntzen
thies Wed Apr 11 08:46:04 2001 EDT Modified files: /php4/ext/oci8 oci8.c Log: never initialize oci in OCI_THREADED mode. seems to break win32. Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.113 php4/ext/oci8/oci8.c:1.114 --- php4/ext/oci8/

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/oci8 oci8.c

2001-04-11 Thread Thies C. Arntzen
thies Wed Apr 11 08:48:07 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/oci8 oci8.c Log: MFH - never initialize OCI in OCI_THREADED mode Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.113 php4/ext/oci8/oci8.c:1.113.2.1 --- php4/ext

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c php_oci8.h

2001-04-13 Thread Thies C. Arntzen
PROTECTED]>| | Thies C. Arntzen <[EMAIL PROTECTED]> | + | + | + | Collecti

[PHP-CVS] cvs: php4 /ext/standard string.c

2001-04-13 Thread Thies C. Arntzen
thies Fri Apr 13 11:22:14 2001 EDT Modified files: /php4/ext/standard string.c Log: @- Fixed crash in pathinfo() Index: php4/ext/standard/string.c diff -u php4/ext/standard/string.c:1.193 php4/ext/standard/string.c:1.194 --- php4/ext/standard/string.c:1.1

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/standard string.c

2001-04-13 Thread Thies C. Arntzen
thies Fri Apr 13 11:23:08 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/standard string.c Log: @- Fixed crash in pathinfo() Index: php4/ext/standard/string.c diff -u php4/ext/standard/string.c:1.193 php4/ext/standard/string.c:1.193.2.1 --- php4/ex

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-21 Thread Thies C. Arntzen
On Wed, Jun 20, 2001 at 05:33:18PM +0200, Confuser wrote: > I understand that OCIPLogon creates a persitant connection to the Oracle DB, > to improve > performance... And I must say it does ! > > However, since OCILogoff is best not used with a persitant logon (and in the > latest versions, > it

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-21 Thread Thies C. Arntzen
On Thu, Jun 21, 2001 at 03:19:09PM +0300, Rouvas Stathis wrote: > > Unfortunately, you are not doing anything wrong. > Persistent connections and PHP/Ora do not play well with each other. ??? - please elaborate. tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-21 Thread Thies C. Arntzen
On Thu, Jun 21, 2001 at 09:32:31PM +0300, Rouvas Stathis wrote: > "Thies C. Arntzen" wrote: > > > > On Thu, Jun 21, 2001 at 03:19:09PM +0300, Rouvas Stathis wrote: > > > > > > Unfortunately, you are not doing anything wrong. > > > Persisten

Re: [PHP] PHP + Oracle + OCIPLogon

2001-06-22 Thread Thies C. Arntzen
On Fri, Jun 22, 2001 at 02:47:39AM +0300, Rouvas Stathis wrote: > "Thies C. Arntzen" wrote: > > please send me a "minimal" testcase that shows this > > behaviour! i'll look into that then. > > I said that I'll have it on Monday, but cu

[PHP] Re: [phplib] Oracle Database keeps disconnecting - or something

2001-06-22 Thread Thies C. Arntzen
On Fri, Jun 22, 2001 at 02:26:43PM +0100, Taylor, Stewart wrote: > Hello, > > Just in case anyones got any ideas. > > I've been testing an application for a few weeks on a test server without > any problems. > After releasing it onto the live server, which is - according to the > administrator

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-22 Thread Thies C. Arntzen
On Fri, Jun 22, 2001 at 02:23:14PM +0100, Taylor, Stewart wrote: > Hello, > > Just in case anyones got any ideas. > > I've been testing an application for a few weeks on a test server without > any problems. > After releasing it onto the live server, which is - according to the > administrator

Re: [PHP] OCIExecute hangs with invalid sql statement

2001-06-23 Thread Thies C. Arntzen
On Fri, Jun 22, 2001 at 11:27:42AM +0100, Euan Greig wrote: > The following code works fine if passed a valid sql statement in $sql, but > if not it hangs. > > $this->conn=OCIPLogon($orauser,$orapwd,$tns) or >die ("Could not log on to database"); > $this->stmnt = OCIParse($this->conn, $sql) o

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-23 Thread Thies C. Arntzen
On Fri, Jun 22, 2001 at 09:16:08PM +0300, Rouvas Stathis wrote: > Do you experience any other sort of problems other than those warnings? > I mean, is anything wrong with the data? Normally, nothing should be > wrong. > > I have seen the same messages (especially the "service handle not > intitia

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-25 Thread Thies C. Arntzen
On Sun, Jun 24, 2001 at 09:50:05PM +0300, Rouvas Stathis wrote: > "Thies C. Arntzen" wrote: > > > > On Fri, Jun 22, 2001 at 09:16:08PM +0300, Rouvas Stathis wrote: > > > Do you experience any other sort of problems other than those warnings? > > &

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-26 Thread Thies C. Arntzen
On Mon, Jun 25, 2001 at 04:17:50PM +0300, Rouvas Stathis wrote: > "Thies C. Arntzen" wrote: > > > > On Sun, Jun 24, 2001 at 09:50:05PM +0300, Rouvas Stathis wrote: > > > "Thies C. Arntzen" wrote: > > > > > > > > On Fri, Jun

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread Thies C. Arntzen
On Mon, Jun 25, 2001 at 01:42:18PM -0500, Michael Champagne wrote: > I'm developing a web application and would like to be able to store the state > of the application in an Oracle table by serializing a bunch of variables and > storing them in the database. Has anyone done this? What datatype w

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread Thies C. Arntzen
On Tue, Jun 26, 2001 at 06:42:00AM -0400, infoz wrote: > > If the data will be less than ~4K, use 'varchar2', otherwise use 'long'. do not use long as long are not fully supported in oracle (and never were). tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

Re: [PHP] raw POST data

2001-07-05 Thread Thies C. Arntzen
On Thu, Jul 05, 2001 at 09:14:36AM +0200, Xavier Paz wrote: > Hi, > > Is there any way to get the raw POST data sent by the client? I mean the > full data, before parsing into PHP variables. no - you would have to hack it up hint: serch for _RAW_ in /functions/post.c tc > > I am us

Re: [PHP] optimal code

2001-07-05 Thread Thies C. Arntzen
On Thu, Jul 05, 2001 at 02:29:12PM +0300, Adrian Ciutureanu wrote: > Is any of the versions below more effective? > > /** Version 1 **/ > if($condition) { > // some big code > } else { > // other big code > } > ?> > > /** Version 2 **/ > if($condition) { >

Re: [PHP] Binding PHP Arrays to Oracle Arrays in OCI library - can you do it?

2001-07-06 Thread Thies C. Arntzen
On Fri, Jul 06, 2001 at 11:38:48AM +0100, Neil Kimber wrote: > > We have a nice PHP framework that handles all of of our interactions with > Oracle via OCI calls. It works beautifully and gives us no problems. > However, the one thing that we cannot get working is the calling of an > Oracle store

Re: [PHP] Oracle 8i + non perstistant database connections remaining open.

2001-07-10 Thread Thies C. Arntzen
On Tue, Jul 10, 2001 at 09:32:32AM +0100, Taylor, Stewart wrote: > Hello, > > > I'm using > OCI8 Revision 1.96 > Oracle Version 8.1 > Apache Apache/1.3.11 > Redhat Linux 6.2 > php 4.0.2 > > I am connecting to my database using a non-persistant connection (ocilogin). > My applications run wit

Re: [PHP] the triple equal sign?

2001-07-16 Thread Thies C. Arntzen
On Mon, Jul 16, 2001 at 04:36:54AM -0700, elias wrote: > What is the '===' ? > > Please give me an example. ("" == false) is true ("" === false) is false re, tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [PHP] Ocifreestatement() and shared memory error?

2001-07-20 Thread Thies C. Arntzen
On Thu, Jul 19, 2001 at 08:56:18PM +0300, Rouvas Stathis wrote: > Michael Champagne wrote: > > > > We recently ran into Oracle error ORA-04031 which has something to do with > > your shared memory being filled up or thrashed (I'm not a DBA so I'm vague on > > this.) I noticed that a lot of the P

Re: [PHP] issues with __sleep() and __wakeup()

2001-08-01 Thread Thies C. Arntzen
On Tue, Jul 31, 2001 at 02:48:48PM -0600, mike cullerton wrote: > on 7/31/01 1:48 PM, scott [gts] at [EMAIL PROTECTED] wrote: > > > I am having a problem with __sleep(); > > there mere existance of it is causing my object > > to not get serialized at all. __wakeup() works fine. > > > > i am usi

Re: [PHP] WDDX recordset data

2001-08-07 Thread Thies C. Arntzen
On Wed, Aug 08, 2001 at 12:21:30AM +0500, Vikram Vaswani wrote: > Can anyone point me to a resource which explains how to iterate through > WDDX recordsets with PHP? wddx_deserialize()? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: [PHP] parse and fatal errors don't seem to touch my handler

2001-08-08 Thread Thies C. Arntzen
On Wed, Aug 08, 2001 at 04:43:15PM +0200, Darius Ivanauskas wrote: > Any ideas ? fatal errors cannot be caught in user-space as of now. tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To c

[PHP-CVS] cvs: php4 /ext/zlib zlib.c

2001-02-01 Thread Thies C. Arntzen
thies Thu Feb 1 09:14:19 2001 EDT Modified files: /php4/ext/zlib zlib.c Log: @- When using the ob_gzhandler() PHP now automagically also sets the @ Content-Lengh correctly which enables browsers to use the HTTP @ Keep-Alive feature. (Thies) I

[PHP-CVS] cvs: php4 /ext/zlib zlib.c

2001-02-01 Thread Thies C. Arntzen
thies Thu Feb 1 09:16:35 2001 EDT Modified files: /php4/ext/zlib zlib.c Log: ws-only Index: php4/ext/zlib/zlib.c diff -u php4/ext/zlib/zlib.c:1.70 php4/ext/zlib/zlib.c:1.71 --- php4/ext/zlib/zlib.c:1.70 Thu Feb 1 09:14:18 2001 +++ php4/ext/zlib/zl

[PHP-CVS] cvs: php4 /ext/imap php_imap.c

2001-02-12 Thread Thies C. Arntzen
thies Mon Feb 12 03:57:22 2001 EDT Modified files: /php4/ext/imap php_imap.c Log: fixed possible leak in imap_search Index: php4/ext/imap/php_imap.c diff -u php4/ext/imap/php_imap.c:1.54 php4/ext/imap/php_imap.c:1.55 --- php4/ext/imap/php_imap.c:1.54

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c

2001-02-12 Thread Thies C. Arntzen
thies Mon Feb 12 06:36:28 2001 EDT Modified files: /php4/ext/oci8 oci8.c Log: @- Improved OCI8 dead-session detection. (Patch by: George Schlossnagle) Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.105 php4/ext/oci8/oci8.c:1.106 --- php4/

[PHP-CVS] cvs: php4 /main internal_functions.c.in internal_functions_win32.c

2001-02-13 Thread Thies C. Arntzen
thies Tue Feb 13 07:58:58 2001 EDT Modified files: /php4/main internal_functions.c.in internal_functions_win32.c Log: remove unneded comments Index: php4/main/internal_functions.c.in diff -u php4/main/internal_functions.c.in:1.16 php4/main/internal_functi

[PHP-CVS] cvs: php4 /ext/pgsql pgsql.c

2001-02-13 Thread Thies C. Arntzen
thies Tue Feb 13 08:54:48 2001 EDT Modified files: /php4/ext/pgsql pgsql.c Log: @- fixes PostgeSQL pg_connect() bug. We would sometimes close the default @ link by acciedent. (Patch by: [EMAIL PROTECTED]) Index: php4/ext/pgsql/pgsql.c diff -u php4/e

[PHP-CVS] cvs: php4 /ext/pgsql pgsql.c php_pgsql.h

2001-02-13 Thread Thies C. Arntzen
thies Tue Feb 13 10:28:25 2001 EDT Modified files: /php4/ext/pgsql pgsql.c php_pgsql.h Log: @- PostgreSQL now does a rollback at the end of a request on every @ persistent connection. This is done by doing an "empty" transaction @ on the connection (T

[PHP-CVS] cvs: php4 /ext/pgsql pgsql.c

2001-02-13 Thread Thies C. Arntzen
thies Tue Feb 13 12:13:15 2001 EDT Modified files: /php4/ext/pgsql pgsql.c Log: remove stupid PGSQL warning Index: php4/ext/pgsql/pgsql.c diff -u php4/ext/pgsql/pgsql.c:1.87 php4/ext/pgsql/pgsql.c:1.88 --- php4/ext/pgsql/pgsql.c:1.87 Tue Feb 13 10:28:2

[PHP-CVS] cvs: php4 / NEWS

2001-02-14 Thread Thies C. Arntzen
thies Wed Feb 14 00:16:05 2001 EDT Modified files: /php4 NEWS Log: Index: php4/NEWS diff -u php4/NEWS:1.589 php4/NEWS:1.590 --- php4/NEWS:1.589 Tue Feb 13 18:09:12 2001 +++ php4/NEWS Wed Feb 14 00:16:03 2001 @@ -4,13 +4,10 @@ ?? ??? 200?, Ver

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c

2001-02-14 Thread Thies C. Arntzen
thies Wed Feb 14 05:06:04 2001 EDT Modified files: /php4/ext/oci8 oci8.c Log: ocifreedesc() now spits a NOTICE when called the "wrong" way. Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.106 php4/ext/oci8/oci8.c:1.107 --- php4/ext/oci8/oci

Re: [PHP] foreach OCIBindByName()

2001-02-14 Thread Thies C. Arntzen
On Wed, Feb 14, 2001 at 12:35:10PM +, Butler, Shaun wrote: > > So I want to bind multiple values that are in an associative array > > I have this code > > > foreach ($binds as $key=>$value) > { > OCIBindByName($this->m_cursor,":$ke

Re: [PHP-CVS] cvs: php4 /ext/pgsql pgsql.c

2001-02-15 Thread Thies C. Arntzen
- tc > > At 18:54 13/2/2001, Thies C. Arntzen wrote: > >thies Tue Feb 13 08:54:48 2001 EDT > > > > Modified files: > > /php4/ext/pgsql pgsql.c > > Log: > > @- fixes PostgeSQL pg_connect() bug. We would sometimes close the de

Re: [PHP-CVS] cvs: php4 /ext/pgsql pgsql.c

2001-02-15 Thread Thies C. Arntzen
On Thu, Feb 15, 2001 at 12:01:35PM +0100, Thies C. Arntzen wrote: > On Thu, Feb 15, 2001 at 04:17:06AM +0200, Zeev Suraski wrote: > > This patch won't always work (it may cause the link not to be closed when > > it's supposed to). I committed a different p

Re: [PHP-CVS] cvs: php4 /ext/pgsql pgsql.c

2001-02-15 Thread Thies C. Arntzen
On Thu, Feb 15, 2001 at 01:47:46PM +0200, Zeev Suraski wrote: > At 13:01 15/2/2001, Thies C. Arntzen wrote: > >On Thu, Feb 15, 2001 at 04:17:06AM +0200, Zeev Suraski wrote: > > > This patch won't always work (it may cause the link not to be closed when > > > i

[PHP-CVS] cvs: php4 /ext/xml xml.c

2001-02-15 Thread Thies C. Arntzen
thies Thu Feb 15 05:41:05 2001 EDT Modified files: /php4/ext/xml xml.c Log: fixed SEGFAULT when using xml_set_object. Zend does not yes support cyclic references! Index: php4/ext/xml/xml.c diff -u php4/ext/xml/xml.c:1.71 php4/ext/xml/xml.c:1.72 --

[PHP-CVS] cvs: php4 /ext/standard string.c

2001-02-15 Thread Thies C. Arntzen
thies Thu Feb 15 06:01:18 2001 EDT Modified files: /php4/ext/standard string.c Log: 0..255 Index: php4/ext/standard/string.c diff -u php4/ext/standard/string.c:1.187 php4/ext/standard/string.c:1.188 --- php4/ext/standard/string.c:1.187Fri Feb 2 05:47

[PHP-CVS] cvs: php4 /ext/cpdf cpdf.c /ext/gd gd.c gd_ctx.c /ext/hyperwave hw.c /ext/interbase interbase.c /ext/oci8 oci8.c /ext/pdf pdf.c /ext/standard file.c iptc.c

2001-02-15 Thread Thies C. Arntzen
thies Thu Feb 15 06:48:59 2001 EDT Modified files: /php4/ext/cpdf cpdf.c /php4/ext/gdgd.c gd_ctx.c /php4/ext/hyperwave hw.c /php4/ext/interbase interbase.c /php4/ext/oci8 oci8.c /php4/ext/pdf pdf.c /php4/ext/stand

[PHP-CVS] cvs: CVSROOT / cvsusers

2001-02-15 Thread Thies C. Arntzen
thies Thu Feb 15 08:56:49 2001 EDT Modified files: /CVSROOTcvsusers Log: by request Index: CVSROOT/cvsusers diff -u CVSROOT/cvsusers:1.214 CVSROOT/cvsusers:1.215 --- CVSROOT/cvsusers:1.214 Mon Feb 12 04:05:12 2001 +++ CVSROOT/cvsusersThu Feb 1

Re: [PHP] Debugger, Debugger and Debugger

2001-02-16 Thread Thies C. Arntzen
On Thu, Feb 15, 2001 at 04:22:04PM -0500, Toby Butzon wrote: > I've read that several times... so does that mean now the only debugger > for PHP4 is the Zend one? there's http://dd.cron.ru -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: [PHP] Still can't talk to the Oracle

2001-02-16 Thread Thies C. Arntzen
On Thu, Feb 15, 2001 at 06:43:41PM -0600, Richard Lynch wrote: > - Original Message - > From: Kristofer Widholm <[EMAIL PROTECTED]> > Newsgroups: php.general > Sent: Tuesday, February 13, 2001 5:29 PM > Subject: [PHP] Still can't talk to the Oracle > > > > I'm setting up a back end produ

[PHP-CVS] cvs: php4 /ext/oci8 oci8.c

2001-02-17 Thread Thies C. Arntzen
thies Sat Feb 17 07:54:41 2001 EDT Modified files: /php4/ext/oci8 oci8.c Log: make oci work again. Index: php4/ext/oci8/oci8.c diff -u php4/ext/oci8/oci8.c:1.108 php4/ext/oci8/oci8.c:1.109 --- php4/ext/oci8/oci8.c:1.108 Thu Feb 15 06:48:57 2001 +++ p

  1   2   >