|
|
@ -609,7 +609,8 @@ class rcube_db
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// get tables if not cached
|
|
|
|
// get tables if not cached
|
|
|
|
if ($this->tables === null) {
|
|
|
|
if ($this->tables === null) {
|
|
|
|
$q = $this->query('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES ORDER BY TABLE_NAME');
|
|
|
|
$q = $this->query('SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = ? ORDER BY TABLE_NAME',
|
|
|
|
|
|
|
|
array($this->db_dsnw_array['database']));
|
|
|
|
|
|
|
|
|
|
|
|
if ($q) {
|
|
|
|
if ($q) {
|
|
|
|
$this->tables = $q->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
|
|
$this->tables = $q->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
|
@ -631,8 +632,8 @@ class rcube_db
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public function list_cols($table)
|
|
|
|
public function list_cols($table)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
$q = $this->query('SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ?',
|
|
|
|
$q = $this->query('SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?',
|
|
|
|
array($table));
|
|
|
|
array($table, $this->db_dsnw_array['database']));
|
|
|
|
|
|
|
|
|
|
|
|
if ($q) {
|
|
|
|
if ($q) {
|
|
|
|
return $q->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
|
|
return $q->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
|
|