Re: [PHP] adodb and php5

2003-09-09 Thread SLanger
Hello Did you compile mysql or any of the other databases into php5? As far as I know php5 does not come with mysql anymore because of some licence issues. So if you haven't compiled it yourself it shouldn't be available and hence not supported by adodb. Just a guess Regards Stefan Langer

[PHP] adodb and php5

2003-09-08 Thread Gilberto Garcia Jr.
Does anyone had tested ADODB with php5? I can make a query, print the recordcount but when i try to show the result i got nothing ? require (some\\adodb.inc.php); $conn = ADONewConnection('mysql'); $conn-PConnect('some', 'some', 'some', 'some'); $seleciona = select campo from tabela ; $qry

RE: [PHP] adodb and php5

2003-09-08 Thread Jay Blanchard
[snip] Does anyone had tested ADODB with php5? I can make a query, print the recordcount but when i try to show the result i got nothing ? require (some\\adodb.inc.php); $conn = ADONewConnection('mysql'); $conn-PConnect('some', 'some', 'some', 'some'); [/snip] You do not need the ADODB

Re: [PHP] adodb and php5

2003-09-08 Thread CPT John W. Holmes
From: Gilberto Garcia Jr. [EMAIL PROTECTED] Does anyone had tested ADODB with php5? I can make a query, print the recordcount but when i try to show the result i got nothing while (!$qry-EOF) { echo $qry-fields['campo'] . br; $qry-MoveNext(); } You might want to ask on the adodb forums:

RE: [PHP] adodb and php5

2003-09-08 Thread Jay Blanchard
[snip] Does anyone had tested ADODB with php5? [/snip] D'oh **slapping forhead** I shouldn't be driving this late on Monday afternoon. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] adodb and php5

2003-09-08 Thread Gilberto Garcia Jr.
adodb layer. php.weblogs.com/adodb - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: Gilberto Garcia Jr. [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, September 08, 2003 5:45 PM Subject: RE: [PHP] adodb and php5 [snip] Does anyone had tested ADODB with php5? I can make