Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/mm/phpwebsite-1.8.x/Global/Database/
Upload File :
Current File : /var/www/html/mmishra/mm/phpwebsite-1.8.x/Global/Database/Engine.php

<?php

namespace Database;

/**
 * Description of Engine
 *
 * @author matt
 */
abstract class Engine {

    protected $db;

    abstract public function addPrimaryIndexId(\Database\Table $table);
    abstract public function getDBType();
    abstract public function getDelimiter();

    public function __construct(\DB $db)
    {
        $this->db = $db;
    }
}

?>