1 install.inc db_run_tasks($driver)

Ensures the environment for a Backdrop database on a predefined connection.

This will run tasks that check that Backdrop can perform all of the functions on a database, that Backdrop needs. Tasks include simple checks like CREATE TABLE to database specific functions like stored procedures and client encoding.

File

core/includes/install.inc, line 1551
API functions for installing modules and themes.

Code

function db_run_tasks($driver) {
  db_installer_object($driver)->runTasks();
  return TRUE;
}