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 =& $conn->Execute($seleciona); if (!$qry) { echo $conn->ErrorMsg(); echo "erro"; } else { while (!$qry->EOF) { echo $qry->fields['campo'] . "<br>"; $qry->MoveNext(); } } ?> any help? thanks