RFE #7000385: Export AUTO_INCREMENT field.

Display Create/Update/Check_time in PDF-Pages, printview, DB/Table structure
and table dumps, if information is available (gathered by 'SHOW TABLE
STATUS' for MySQL 3.23.XX).
This commit is contained in:
Garvin Hicking
2003-03-13 16:46:54 +00:00
parent 7eaa1d3c64
commit 14a427263b
100 changed files with 502 additions and 18 deletions

View File

@@ -63,6 +63,18 @@ else if (PMA_MYSQL_INT_VERSION >= 32303) {
while ($tmp = PMA_mysql_fetch_array($result)) {
$tooltip_truename[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : $tmp['Name']) : $tmp['Name']);
$tooltip_aliasname[$tmp['Name']] = ($cfg['ShowTooltipAliasTB'] ? $tmp['Name'] : (!empty($tmp['Comment']) ? $tmp['Comment'] . ' ' : ''));
if (isset($tmp['Create_time']) && !empty($tmp['Create_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $strStatCreateTime . ': ' . PMA_localisedDate(strtotime($tmp['Create_time']));
}
if (isset($tmp['Update_time']) && !empty($tmp['Update_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $strStatUpdateTime . ': ' . PMA_localisedDate(strtotime($tmp['Update_time']));
}
if (isset($tmp['Check_time']) && !empty($tmp['Check_time'])) {
$tooltip_aliasname[$tmp['Name']] .= ', ' . $strStatCheckTime . ': ' . PMA_localisedDate(strtotime($tmp['Check_time']));
}
} // end while
} // end if