function hostingService_db_mysql::update in Hosting 7.4
Same name and namespace in other branches
- 6.2 db_server/hosting_db_server.service.inc \hostingService_db_mysql::update()
- 7.3 db_server/hosting_db_server.service.inc \hostingService_db_mysql::update()
Overrides hostingService::update
File
- db_server/
hosting_db_server.service.inc, line 63 - Provide the hosting serivce classes for database integration.
Class
- hostingService_db_mysql
- A MySQL specific db service implementation class.
Code
function update() {
if (!empty($this->db_passwd)) {
parent::update();
}
else {
// only do the parent's update routine.
parent::delete_revision();
parent::insert();
}
}