You are here

public function FrxDataSource::searchTables in Forena Reports 7.5

Method to return an array of tables that start with the string indicated in $str

Parameters

$str Name of tables.:

Return value

multitype:

5 methods override FrxDataSource::searchTables()
FrxDrupal::searchTables in src/Driver/FrxDrupal.php
Method to return an array of tables that start with the string indicated in $str
FrxMSSQL::searchTables in src/Driver/FrxMSSQL.php
Perform search of tables.
FrxOracle::searchTables in src/Driver/FrxOracle.php
Method to return an array of tables that start with the string indicated in $str
FrxPDO::searchTables in src/Driver/FrxPDO.php
Method to return an array of tables that start with the string indicated in $str
FrxPostgres::searchTables in src/Driver/FrxPostgres.php
Method to return an array of tables that start with the string indicated in $str

File

src/Driver/FrxDataSource.php, line 472
Class that defines default methods for access control in an FrxDataSource

Class

FrxDataSource

Namespace

Drupal\forena\Driver

Code

public function searchTables($str) {
  return array();
}