NAME
API::Plesk::Databases - extension module for managing databases.
SYNOPSIS
Directly not used, calls via API::Plesk.
use API::Plesk;
use API::Plesk::Response;
my $plesk_client = API::Plesk->new(%params);
# See documentations for API::Plesk
$plesk_client->Databases->create(
'name' => 'good_base',
'domain-id' => 12345,
'type' => 'mysql',
'db-server-id' => 1,
);
- create(%params)
-
The method used to add database to a certain Plesk domain account.
Params:
name - db name (lower case preferably), domain-id - domain id in Plesk, type - type of bd: mysql, mssql (Windows only) or postrgesql, db-server-id - db server identification number (1 -- default),
Return:
response object with created database id in data filed.
- delete(%params)
-
Delete database account for certain Plesk Domain (selected by id or name).
Params:
'db-id' - database id or 'domain-id' - delete all bases for domain with certain id in Plesk or 'domain-name' - delete all bases for domain with certain domain name in Plesk,
Return:
API::Plesk::Response object
EXPORT
None.
SEE ALSO
Blank.
AUTHOR
Odintsov Pavel <nrg[at]cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2008 by NRG
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.