Re: [PHP-DB] Re: Oracle 9i support

2002-02-09 Thread Thies C. Arntzen
On Sat, Feb 09, 2002 at 01:10:58PM +0100, Jaros?aw Jankowski wrote: > > > Theodore D Boardman wrote: > > > Greetings! > > > > As far as I can tell from the documentation, the OCI8 driver supports Oracle > > 8. However, on the ADODB site, they mention that the OCI8 driver supports > > Oracle 8/9

[PHP-DB] Re: Oracle 9i support

2002-02-09 Thread Jarosław Jankowski
Theodore D Boardman wrote: > Greetings! > > As far as I can tell from the documentation, the OCI8 driver supports Oracle > 8. However, on the ADODB site, they mention that the OCI8 driver supports > Oracle 8/9. > > Can someone clarify what the status of support for Oracle 9i is in PHP? I > need

RE: [PHP-DB] PATCH for 9i support (was Re: [PHP-DB] Re: Oracle 9i Support)

2001-07-27 Thread Brian Dunworth
On Thursday, July 26, 2001 at 9:48 PM, Sommai Fongnamthip said: > I have oracle 8i in Linux server. How could I > connect it with PHP (on other server)? Install the Oracle Client software (on the other server). --- Brian S. Dunworth Sr. Software Dev

Re: [PHP-DB] PATCH for 9i support (was Re: [PHP-DB] Re: Oracle 9i Support)

2001-07-26 Thread Sommai Fongnamthip
Hi, I have oracle 8i in Linux server. How could I connect it with PHP (on other server)? SF At 16:57 26/7/2001 -0500, Lee Whatley (System Admin) wrote: >Here is a patch that will allow configure to properly detect oracle 9i >If your mail server filters out attachments you can download

[PHP-DB] Re: PATCH for 9i support (was Re: [PHP-DB] Re: Oracle 9i Support)

2001-07-26 Thread Thies C. Arntzen
On Thu, Jul 26, 2001 at 04:57:29PM -0500, Lee Whatley (System Admin) wrote: > Here is a patch that will allow configure to properly detect > oracle 9i > If your mail server filters out attachments you can download it from > http://www.cba.ua.edu/~spaff/php-4.0.6-oci8-oracle9i.patch > > The patch

[PHP-DB] PATCH for 9i support (was Re: [PHP-DB] Re: Oracle 9i Support)

2001-07-26 Thread Lee Whatley (System Admin)
Here is a patch that will allow configure to properly detect oracle 9i If your mail server filters out attachments you can download it from http://www.cba.ua.edu/~spaff/php-4.0.6-oci8-oracle9i.patch The patch should be applied from directly outside of the php source tree. I am not a coder by any

Re: [PHP-DB] Re: Oracle 9i Support

2001-07-26 Thread Lee Whatley (System Admin)
Ok I'm a dumbass :) $ORACLE_HOME was set to mode 770. That seemed to fix the problem. I'll have to do some more stuff besides loging-on to the database to make sure all the functions work right though. When I get some time I'll send you those patches for configure and configure.m4. In the meanti

Re: [PHP-DB] Re: Oracle 9i Support

2001-07-26 Thread Thies C. Arntzen
On Thu, Jul 26, 2001 at 01:50:37PM -0500, Lee Whatley (System Admin) wrote: > Well, I was able to modify the main configure script and the > configure.m4 script in the ext/oci8 directory to detect 9i, and doing so > allowed the configure process to complete and php to compile. When I > did a phpi

Re: [PHP-DB] Re: Oracle 9i Support

2001-07-26 Thread Lee Whatley (System Admin)
Well, I was able to modify the main configure script and the configure.m4 script in the ext/oci8 directory to detect 9i, and doing so allowed the configure process to complete and php to compile. When I did a phpinfo() command it showed php as having oracle support, but did not list anything unde

Re: [PHP-DB] Re: Oracle 9i Support

2001-07-26 Thread Thies C. Arntzen
On Thu, Jul 26, 2001 at 01:17:57PM -0500, Lee Whatley (System Admin) wrote: > Well I found out that the reason I got the error message was > that the > --with-oci8 option was looking for libclntsh.so.8.0 > I made a symlink of this which pointed to the libclntsh.so.9.0 that > comes with oracle 9i.

[PHP-DB] Re: Oracle 9i Support

2001-07-26 Thread Lee Whatley (System Admin)
Well I found out that the reason I got the error message was that the --with-oci8 option was looking for libclntsh.so.8.0 I made a symlink of this which pointed to the libclntsh.so.9.0 that comes with oracle 9i. This was enough to fool the configure script and allowed php to compile, but none of