Browse Source

Added "driver" method to System\DB.

Taylor Otwell 14 years ago
parent
commit
2f7fa6687c
1 changed files with 11 additions and 0 deletions
  1. 11 0
      system/db.php

+ 11 - 0
system/db.php

@@ -94,4 +94,15 @@ class DB {
 		return new DB\Query($table, $connection);
 	}
 
+	/**
+	 * Get the driver name for a database connection.
+	 *
+	 * @param  string  $connection
+	 * @return string
+	 */
+	public static function driver($connection = null)
+	{
+		return static::connection($connection)->getAttribute(\PDO::ATTR_DRIVER_NAME);
+	}
+
 }