public function DriverBase::searchTables in Forena Reports 8
Method to return an array of tables that start with the string indicated in $str
Parameters
string $str : Partial table Name to search.
Return value
array Array of tables to search. :
5 methods override DriverBase::searchTables()
- FrxDrupal::searchTables in src/
FrxPlugin/ Driver/ FrxDrupal.php - Method to return an array of tables that start with the string indicated in $str
- FrxMSSQL::searchTables in src/
FrxPlugin/ Driver/ FrxMSSQL.php - Perform search of tables.
- FrxOracle::searchTables in src/
FrxPlugin/ Driver/ FrxOracle.php - Method to return an array of tables that start with the string indicated in $str
- FrxPDO::searchTables in src/
FrxPlugin/ Driver/ FrxPDO.php - Method to return an array of tables that start with the string indicated in $str
- FrxPostgres::searchTables in src/
FrxPlugin/ Driver/ FrxPostgres.php - Method to return an array of tables that start with the string indicated in $str
File
- src/
FrxPlugin/ Driver/ DriverBase.php, line 525 - Class that defines default methods for access control in an DriverBase
Class
Namespace
Drupal\forena\FrxPlugin\DriverCode
public function searchTables($str) {
return array();
}