not that i know of
plus you might note that the <database>_query() functions sometimes take their arguments in a different order than each other for some reason.
what one could do is make abstraction functions or classes. there are some available.
ie:
function abstract_dbclose($dlink) {
// just change this function and
// all other abstract functions
//to change databases
mysql_close($dlink)
}
function abstract_dbopen($host, $username, $pass, $db) {
$pointer = mysql_connect($host, $username, $pass);
mysql_select_db($db, $pointer);
return $pointer;
}
make one for query, etc etc etc
-harlan