You are here

function hostingService_db_mysql::update in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 db_server/hosting_db_server.service.inc \hostingService_db_mysql::update()
  2. 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 56
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();
  }
}