Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

drush_sql_url

Definition

drush_sql_url()
contributions/drush/drush_sql/drush_sql.module, line 57

Description

Command callback. Displays the Drupal site's database connection string.

Code

<?php
function drush_sql_url() {
  drush_print($GLOBALS['db_url']);
}
?>