public function getListTable() { $pRs = $this->query(sgbd_syntax_oracle::getListTable()); if (empty($pRs)) { return null; } $tObj = array(); while ($tRow = $pRs->fetch(PDO::FETCH_NUM)) { $tObj[] = $tRow[0]; } return $tObj; }
public function getListTable() { $pRs = $this->query(sgbd_syntax_oracle::getListTable()); $tCol = array(); if (empty($pRs)) { return $tCol; } while ($tRow = oci_fetch_row($pRs)) { $tCol[] = $tRow[0]; } return $tCol; }