From f29d5f091742c51641d4c875dd1126e6cf521e4c Mon Sep 17 00:00:00 2001 From: Mark Newnham Date: Wed, 24 Mar 2021 21:07:34 -0600 Subject: update docblock for metatables --- drivers/adodb-firebird.inc.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/drivers/adodb-firebird.inc.php b/drivers/adodb-firebird.inc.php index 9b163b8f..819e92ae 100644 --- a/drivers/adodb-firebird.inc.php +++ b/drivers/adodb-firebird.inc.php @@ -575,15 +575,15 @@ class ADODB_firebird extends ADOConnection { } /** - * Retrieves a list of tables based on given criteria - * - * @param string|bool $ttype (Optional) Table type = 'TABLE', 'VIEW' or false=both (default) - * @param string|bool $showSchema (Optional) schema name, false = current schema (default) - * @param string|bool $mask (Optional) filters the table by name - * - * @return array list of tables - */ - function MetaTables($ttype = false, $showSchema = false, $mask = false) + * Retrieves a list of tables based on given criteria + * + * @param string|bool $ttype (Optional) Table type = 'TABLE', 'VIEW' or false=both (default) + * @param string|bool $showSchema (Optional) schema name, false = current schema (default) + * @param string|bool $mask (Optional) filters the table by name + * + * @return array list of tables + */ + public function metaTables($ttype = false, $showSchema = false, $mask = false) { $save = $this->metaTablesSQL; if (!$showSchema) { @@ -772,6 +772,7 @@ class ADODB_firebird extends ADOConnection { } return $s; } + // Note that Interbase 6.5 uses this ROWS instead - don't you love forking wars! // SELECT col1, col2 FROM table ROWS 5 -- get 5 rows -- cgit v1.3