2008-08-21 19:36:39 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
2009-04-20 20:02:31 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Installation code for MySQL embedded database engine.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-08-21 19:36:39 +00:00
|
|
|
// MySQL specific install functions
|
|
|
|
|
2009-07-27 19:42:56 +00:00
|
|
|
class DatabaseTasks_mysql extends DatabaseTasks {
|
2008-08-21 19:36:39 +00:00
|
|
|
protected $pdoDriver = 'mysql';
|
|
|
|
public function name() {
|
|
|
|
return 'MySQL';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|