Create database

				
					StructOperationResponse WebHostingDBCreate(string $IDsession, string $id, string $dbName, string $version="")
				
			

Create a database.

REQUIRED

  • idSession string (32)
    Session ID.
  • id string
    Hosting ID.
  • dbName string
    Name of the database.

    It must be prefixed by the vhost ID and an underscore (Example XXXX_mydatabase).


OPTIONAL

  • version string
    Desired SQL version. If empty, the latest version will be used.

An Object of type StructOperationResponse

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
try 
{
 
    $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); 
    $clientSOAP->WebHostingDBCreate($idSession, "NW1024", "NW1024_database"); 
}
catch(SoapFault $fault) 
{
    echo "Exception : " .$fault->getMessage(). "\n"; 
}
 
if (isset($idSession)) 
{
    $clientSOAP->sessionClose($idSession); 
}