* @package Mammut\DB\Adapter\Oracle */ class Table extends \Mammut\DB\Table { private $info = NULL; // cache public function __construct(DB &$db, $name) { parent::__construct($db, $name); } /** * * @param $db MFDB * instance * @param $tableName string * name * @return TableInfo info object */ public function getInfo() { throw new ImplementationException('not implemented'); } public function setPKey(array $fields) { throw new ImplementationException('not implemented'); } public function getPKeyFields() { throw new ImplementationException('not implemented'); } public function removePKey() { throw new ImplementationException('not implemented'); } public function getIndexList($name) { throw new ImplementationException('not implemented'); } public function isIndexDefined($name) { throw new ImplementationException('not implemented'); } public function getIndexFields($name) { throw new ImplementationException('not implemented'); } public function addColumn(ColumnInfo $info, $after = NULL) { throw new ImplementationException('not implemented'); } public function renameColumn($column, $newName) { throw new ImplementationException('not implemented'); } public function alterColumn($column, ColumnInfo $newInfo) { throw new ImplementationException('not implemented'); } }