public function FrxDataSource::searchTables in Forena Reports 7.4
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 plugins/
FrxDrupal.inc - Method to return an array of tables that start with the string indicated in $str
- FrxMSSQL::searchTables in plugins/
FrxMSSQL.inc - Perform search of tables.
- FrxOracle::searchTables in plugins/
FrxOracle.inc - Method to return an array of tables that start with the string indicated in $str
- FrxPDO::searchTables in plugins/
FrxPDO.inc - Method to return an array of tables that start with the string indicated in $str
- FrxPostgres::searchTables in plugins/
FrxPostgres.inc - Method to return an array of tables that start with the string indicated in $str
File
- ./
FrxDataSource.inc, line 470 - Class that defines default methods for access control in an FrxDataSource
Class
- FrxDataSource
- @file Class that defines default methods for access control in an FrxDataSource
Code
public function searchTables($str) {
return array();
}