Re: [PHP] Re: ADODB vs PHP extension

2005-09-14 Thread Jens Schulze
Dean Maunder wrote:
 My apologies, I meant the PEAR ADODB abstraction layer/  

If you mean DB_ado (from http://pear.php.net/package/DB_ado) I can't say
anything about it because I haven't used it.
But if you mean ADOdb Database Abstraction Library for PHP (from
http://adodb.sourceforge.net/):
It should be somewhat faster if you use the extension, because of the
abstraction layer there is some overhead by using the class even when
the class itself also uses the extension. So if you need all the speed
you can get use the extension calls, but if you want a system where you
can easily adopt from one database to another, handy helping functions
for database specific date conversion and a nice sql query caching
system, you should use the abstraction layer.

Jens

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: ADODB vs PHP extension

2005-09-13 Thread Jens Schulze
Do you mean the ADODB database abstraction layer for PHP or the original
ADODB technology of Microsoft?

Jens

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Re: ADODB vs PHP extension

2005-09-13 Thread Dean Maunder
My apologies, I meant the PEAR ADODB abstraction layer/  

-Original Message-
From: Jens Schulze [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 14 September 2005 12:05 AM
To: php-general@lists.php.net
Subject: [PHP] Re: ADODB vs PHP extension

Do you mean the ADODB database abstraction layer for PHP or the original
ADODB technology of Microsoft?

Jens

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: adodb paging problem

2005-02-25 Thread Lester Caine
pURbA wrote:
i've searched on the internet about my problem that i
have, and ended up with nothing. i believe some of u
guys have faced this problem before.
here is the problem:
i have a table for books, and want to display it using
adodb-pager.
Try
http://phplens.com/lens/lensforum/topics.php?id=4
I can remember having a niggle with getting it set up, but not what the 
solution was ;)

--
Lester Caine
-
L.S.Caine Electronic Services
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: adodb + oracle 8i

2003-03-17 Thread Philippe Saladin
 I´m triyng to use that, but I´m noting realize how to estabilish a
conection
 with oracle.

 I´m getting the folowing error:

 Fatal error: Call to undefined function: ora_plogon() in
 e:\inetpub\wwwroot\hosted\EnsinoNet\php\adodb\drivers\adodb-oracle.inc.php
 on line 105


 I´m triyng to conect with oracle with the folowing command:

 $conn = ADONewConnection('oracle');

with that, adodb try to use the 'oracle' php extension (ora_logon functions
and friends), which is only for oracle 7. In your case (oracle 8), you have
to use the 'oci8' extension, to let adodb use the php ocilogon functions and
friends.
So, try :
 $conn = ADONewConnection('oci8');
note : you would also have to compile php with --oci, and the oracle client
is also needed.

Regards,
Philippe




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: ADODB Library

2001-08-21 Thread Jarosaw Jankowski



Jochen Kaechelin wrote:

 Anyone made good experiences
 with the ADODB Library for PHP4?

Yes. I use it with Oracle8 with any bad experience. It's fast
( except select_limit )  and brings some cool functions like generating
select menus.
Jarry


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: ADODB?

2001-08-21 Thread Jarosaw Jankowski



Jochen Kaechelin wrote:

 is there a source for further information
 connecting to databases with ADODB for PHP4?

 I only know http://php.weblogs.com/ADODB

 --

I thing this is the only one, but you can try asking on php.weblog.com
Jarek


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]