summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Newnham <mark@newnhams.com>2021-03-24 21:07:34 -0600
committerDamien Regad <dregad@mantisbt.org>2021-08-22 11:16:01 +0200
commitf29d5f091742c51641d4c875dd1126e6cf521e4c (patch)
tree5f8411e8e8c04bdce121cc27a1a560c1ed00b286
parentc7bae02d3c22066144a465f97d5984b5eede96cf (diff)
downloadadodb-f29d5f091742c51641d4c875dd1126e6cf521e4c.tar.gz
adodb-f29d5f091742c51641d4c875dd1126e6cf521e4c.tar.bz2
adodb-f29d5f091742c51641d4c875dd1126e6cf521e4c.zip
update docblock for metatables
-rw-r--r--drivers/adodb-firebird.inc.php19
1 files 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