我有这个类“数据库”,它扩展了 PDO,我可以进行搜索并找到这样的完美:
public function select($sql, $array = array(), $fetchMode = PDO::FETCH_ASSOC){
$sth = $this->prepare($sql);
foreach ($array as $key => $value) {
$sth->bindValue("$key", $value);
}
$sth->execute();
return $sth->fetchAll($fetchMode);
}
但现在我想要一个让我检索表模式的函数......
我尝试使用 PDO:cubic_schema,但无法使其工作。我一直在找不到常量或找不到方法,这是一个尝试...
public function schema($table) {
$table_information = $this->cubrid_schema(PDO::CUBRID_SCH_CLASS, $table);
return $table_information;
}
任何意见,将不胜感激!