/**
  * Load a specific database table into memory.
  * 
  * @param string $tableName
  * @return DriverTable
  * @author Anthony Bush
  **/
 public function loadTable($tableName)
 {
     $table = new MysqlTable($tableName, $this->dbLink, $this);
     $table->loadColumns();
     $this->tables[$tableName] = $table;
     return $table;
 }