cPanel API 1 Functions - Mysql::adddb

Description

This function creates a MySQL® database.

Warning:

cPanel API 1 is deprecatedDo not use this function. Instead, we strongly recommend that you use the following newer functions:

Examples


 LiveAPI PHP Class

$cpanel new CPANEL(); // Connect to cPanel - only do this once.
$add_db $cpanel->api1('Mysql','adddb'array('database') ); // Call the function.

 LiveAPI Perl Module

my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
my $add_db $cpliveapi->api1('Mysql','adddb', ['database'] ); # Call the function.

 cPanel Tag System (deprecated)

Warning:

In cPanel & WHM version 11.30 and later, cPanel tags are deprecated. This example is present in order to help developers move from the old cPanel tag system to our LiveAPI.

We strongly recommend that you only use the LiveAPI system to call the cPanel APIs.

 

<cpanel Module="Mysql::adddb( $FORM('dbname'))">

 Output (none)

This function does not return output.

Parameters

 Parameter 

 Type 

Description

Possible values

 Example 

 dbname

 string 

 Required

 The MySQL  database  name.

 A valid database name.

 If database prefixing is enabled and this parameter does not begin with the prefix, the function will automatically add it.

 Warning

 The maximum length of the database name is 64 characters. However, due to the method that cPanel & WHM uses to store MySQL database names, each underscore character requirestwo characters of that limit. Therefore, if you enable database  prefixing, the maximum length of the database name is 63 characters, which includes both the database prefix and the underscore character. Each additional underscore requires another two characters of that limit.

 If the total length of the username is longer than the character limit for database usernames, the function will fail.

 database 

 

Returns

This function does not return output.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....