Hi all,
I'm converting an application from Mysql native code to ADODB.
Is there a simple way to get ADOdb's GetAssoc() function to behave exactly
like mysel_fetch_assoc, where the array keys are field names instead of
the key fields themselves? IE:
select name, phone, city FROM people;
$array = $DB->GetAssoc("select name, phone, city FROM people");
$array['name'] = "Bob"
$array['phone'] = "555-1212"
instead of
$array['Bob'] = '555-1212'
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php