diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index 14153a0..1763730 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -192,6 +192,25 @@ function system_requirements($phase) {
       'title' => t('Database system version'),
       'value' => Database::getConnection()->version(),
     );
+    $connectionOptions = Database::getConnection()->getConnectionOptions();
+    if (!empty($connectionOptions['prefix']) > 0 && !empty($connectionOptions['prefix']['default'])) {
+      $requirements['database_conection_info'] = array(
+        'title' => $t('Database connection information'),
+        'value' => $t('Host: "%host", Database: "%database", Prefix: "%prefix"', array(
+          '%host' => $connectionOptions['host'],
+          '%database' => $connectionOptions['database'],
+          '%prefix' => $connectionOptions['prefix']['default'],
+        )),
+      );
+    } else {
+      $requirements['database_conection_info'] = array(
+        'title' => $t('Database connection information'),
+        'value' => $t('Host: "%host", Database: "%database", no prefix', array(
+          '%host' => $connectionOptions['host'],
+          '%database' => $connectionOptions['database'],
+        )),
+      );
+    }
   }
 
   // Test PHP memory_limit
