Page 1 of 1

adodb

Posted: Tue Oct 19, 2004 2:28 am
by Bewbs
so like im trying to make all my modules adodb compatible or something

what would this be

Code: Select all

$numrows = mysql_num_rows($query);
in adodb format?

Re: adodb

Posted: Tue Oct 19, 2004 9:32 am
by Ted
Bewbs wrote:so like im trying to make all my modules adodb compatible or something

what would this be

Code: Select all

$numrows = mysql_num_rows($query);
in adodb format?

Code: Select all

$result = $gCms->Execute($query);
$numrows = $result->RowCount();