Hi Does any one know if you can connect then create a database using adodb
a standard connection is like
<?php include('adodb/adodb.inc.php');
$db = ADONewConnection($dbdriver); # eg 'mysql' or 'postgres'
$db->debug = true;
$db->Connect($server, $user, $password, $database);
$rs = $db->Execute('sql here ');
but using it like this it seems the database must already exist before you can do the "create database sql" !