Project

General

Profile

Bug #18363 ยป bug_7743.diff

Administrator Admin, 2008-03-04 10:42

View differences:

t3lib/class.t3lib_sqlengine.php (Arbeitskopie)
* (DUMMY) Returns the list of tables from the database
*
* @return array Tables in an array (tablename is in both key and value)
* @todo Should return table details in value! see t3lib_db::admin_get_tables()
*/
function admin_get_tables() {
$whichTables = array();
t3lib/class.t3lib_db.php (Arbeitskopie)
* In a DBAL this method should 1) look up all tables from the DBMS of the _DEFAULT handler and then 2) add all tables *configured* to be managed by other handlers
* Usage count/core: 2
*
* @return array Tables in an array with tablename as key and an array with status information as value
* @return array Array with tablenames as key and arrays with status information as value
*/
function admin_get_tables() {
$whichTables = array();
t3lib/class.t3lib_install.php (Arbeitskopie)
*/
function getListOfTables() {
$whichTables = $GLOBALS['TYPO3_DB']->admin_get_tables(TYPO3_db);
return array_keys($whichTables);
foreach ($whichTables as $key=>&$value) {
$value = $key;
}
return $whichTables;
}
/**
typo3/sysext/dbal/handlers/class.tx_dbal_handler_openoffice.php (Arbeitskopie)
/**
* Returns the list of tables from the database
*
* @return array Tables in an array (tablename is in both key and value)
* @return array Tables in an array with tablename as key and an array with status information as value
*/
function admin_get_tables() {
typo3/sysext/dbal/handlers/class.tx_dbal_handler_rawmysql.php (Arbeitskopie)
* Returns the list of tables from the database, quering MySQL for it.
*
* @return array Tables in an array (tablename is in both key and value)
* @todo Should return table details in value! see t3lib_db::admin_get_tables()
*/
function admin_get_tables() {
$whichTables = array();
typo3/sysext/dbal/handlers/class.tx_dbal_handler_xmldb.php (Arbeitskopie)
* Returns the list of tables from the database
*
* @return array Tables in an array (tablename is in both key and value)
* @todo Should return table details in value! see t3lib_db::admin_get_tables()
*/
function admin_get_tables() {
typo3/sysext/dbal/class.ux_t3lib_db.php (Arbeitskopie)
* When fetching the tables, it skips tables whose names begin with BIN$, as this is taken as a table coming from the "Recycle Bin" on Oracle.
*
* @return array Tables in an array (tablename is in both key and value)
* @todo Should the check for Oracle Recycle Bin stuff be moved elsewhere?
* @todo Should the check for Oracle Recycle Bin stuff be moved elsewhere?
* @todo Should return table details in value! see t3lib_db::admin_get_tables()
*/
function admin_get_tables() {
$whichTables = array();
    (1-1/1)