2 /* vim: set expandtab sw=4 ts=4 sts=4: */
12 require_once './libraries/common.inc.php';
14 require './libraries/tbl_common.php';
17 * Gets the variables sent or posted to this script, then displays headers
20 if (! isset($selected_tbl)) {
21 require_once './libraries/header.inc.php';
26 if (! isset($the_tables) ||
! is_array($the_tables)) {
27 $the_tables = array();
31 * Gets the relations settings
33 require_once './libraries/relation.lib.php';
34 require_once './libraries/transformations.lib.php';
35 require_once './libraries/Index.class.php';
37 $cfgRelation = PMA_getRelationsParam();
40 * Defines the url to return to in case of error in a sql statement
43 $err_url = 'tbl_sql.php?' . PMA_generate_common_url($db, $table);
45 $err_url = 'db_sql.php?' . PMA_generate_common_url($db);
50 * Selects the database
52 PMA_DBI_select_db($db);
56 * Multi-tables printview thanks to Christophe Gesche from the "MySQL Form
57 * Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
59 if (isset($selected_tbl) && is_array($selected_tbl)) {
60 $the_tables = $selected_tbl;
61 } elseif (strlen($table)) {
62 $the_tables[] = $table;
64 $multi_tables = (count($the_tables) > 1);
67 if (empty($GLOBALS['is_header_sent'])) {
68 require_once './libraries/header.inc.php';
71 foreach ($the_tables as $key => $table) {
72 $tbl_list .= (empty($tbl_list) ?
'' : ', ')
73 . PMA_backquote($table);
75 echo '<strong>'. __('Show tables') . ': ' . $tbl_list . '</strong>' . "\n";
79 $tables_cnt = count($the_tables);
82 foreach ($the_tables as $key => $table) {
83 if ($counter +
1 >= $tables_cnt) {
86 $breakstyle = ' style="page-break-after: always;"';
89 echo '<div' . $breakstyle . '>' . "\n";
90 echo '<h1>' . $table . '</h1>' . "\n";
93 * Gets table informations
95 $showtable = PMA_Table
::sGetStatusInfo($db, $table);
96 $num_rows = (isset($showtable['Rows']) ?
$showtable['Rows'] : 0);
97 $show_comment = (isset($showtable['Comment']) ?
$showtable['Comment'] : '');
99 $tbl_is_view = PMA_Table
::isView($db, $table);
102 * Gets fields properties
104 $result = PMA_DBI_query(
105 'SHOW FIELDS FROM ' . PMA_backquote($table) . ';', null,
106 PMA_DBI_QUERY_STORE
);
107 $fields_cnt = PMA_DBI_num_rows($result);
110 // We need this to correctly learn if a TIMESTAMP is NOT NULL, since
111 // SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL
112 // and SHOW CREATE TABLE says NOT NULL (tested
113 // in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
115 $show_create_table = PMA_DBI_fetch_value(
116 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
118 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
120 // Check if we can use Relations (Mike Beck)
121 // Find which tables are related with the current one and write it in
123 $res_rel = PMA_getForeigners($db, $table);
124 $have_rel = (bool) count($res_rel);
127 * Displays the comments of the table if MySQL >= 3.23
129 if (!empty($show_comment)) {
130 echo __('Table comments') . ': ' . htmlspecialchars($show_comment) . '<br /><br />';
134 * Displays the table structure
138 <!-- TABLE INFORMATIONS
-->
139 <table style
="width: 100%;">
142 <th
><?php
echo __('Field'); ?
></th
>
143 <th
><?php
echo __('Type'); ?
></th
>
144 <!--<th
><?php
echo __('Attributes'); ?
></th
>-->
145 <th
><?php
echo __('Null'); ?
></th
>
146 <th
><?php
echo __('Default'); ?
></th
>
147 <!--<th
><?php
echo __('Extra'); ?
></th
>-->
150 echo '<th>' . __('Links to') . '</th>' . "\n";
152 echo ' <th>' . __('Comments') . '</th>' . "\n";
153 if ($cfgRelation['mimework']) {
154 echo ' <th>MIME</th>' . "\n";
161 while ($row = PMA_DBI_fetch_assoc($result)) {
162 $type = $row['Type'];
163 // reformat mysql query output
164 // set or enum types: slashes single quotes inside options
165 if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
166 $tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'',
168 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
174 $type = preg_replace('@BINARY@i', '', $type);
175 $type = preg_replace('@ZEROFILL@i', '', $type);
176 $type = preg_replace('@UNSIGNED@i', '', $type);
181 $binary = stristr($row['Type'], 'binary');
182 $unsigned = stristr($row['Type'], 'unsigned');
183 $zerofill = stristr($row['Type'], 'zerofill');
185 $attribute = ' ';
187 $attribute = 'BINARY';
190 $attribute = 'UNSIGNED';
193 $attribute = 'UNSIGNED ZEROFILL';
195 if (!isset($row['Default'])) {
196 if ($row['Null'] != '' && $row['Null'] != 'NO') {
197 $row['Default'] = '<i>NULL</i>';
200 $row['Default'] = htmlspecialchars($row['Default']);
202 $field_name = htmlspecialchars($row['Field']);
204 // here, we have a TIMESTAMP that SHOW FULL FIELDS reports as having the
205 // NULL attribute, but SHOW CREATE TABLE says the contrary. Believe
208 * @todo merge this logic with the one in tbl_structure.php
209 * or move it in a function similar to PMA_DBI_get_columns_full()
210 * but based on SHOW CREATE TABLE because information_schema
211 * cannot be trusted in this case (MySQL bug)
213 if (!empty($analyzed_sql[0]['create_table_fields'][$field_name]['type']) && $analyzed_sql[0]['create_table_fields'][$field_name]['type'] == 'TIMESTAMP' && $analyzed_sql[0]['create_table_fields'][$field_name]['timestamp_not_null']) {
220 if (isset($pk_array[$row['Field']])) {
221 echo ' <u>' . $field_name . '</u>' . "\n";
223 echo ' ' . $field_name . "\n";
227 <td
><?php
echo $type; ?
><bdo dir
="ltr"></bdo
></td
>
228 <!--<td
><?php
echo $attribute; ?
></td
>-->
229 <td
><?php
echo (($row['Null'] == '' ||
$row['Null'] == 'NO') ?
__('No') : __('Yes')); ?
> 
;</td
>
230 <td
><?php
if (isset($row['Default'])) { echo $row['Default']; } ?
> 
;</td
>
231 <!--<td
><?php
echo $row['Extra']; ?
> 
;</td
>-->
235 if (isset($res_rel[$field_name])) {
236 echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field']);
238 echo ' </td>' . "\n";
241 $comments = PMA_getComments($db, $table);
242 if (isset($comments[$field_name])) {
243 echo htmlspecialchars($comments[$field_name]);
245 echo ' </td>' . "\n";
246 if ($cfgRelation['mimework']) {
247 $mime_map = PMA_getMIME($db, $table, true);
250 if (isset($mime_map[$field_name])) {
251 echo htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype']));
253 echo ' </td>' . "\n";
259 PMA_DBI_free_result($result);
264 if (! $tbl_is_view && $db != 'information_schema') {
268 echo PMA_Index
::getView($table, $db, true);
271 * Displays Space usage and row statistics
274 if ($cfg['ShowStats']) {
276 if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
279 if ($nonisam == false) {
282 $mergetable = PMA_Table
::isMerge($db, $table);
284 list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length']);
285 if ($mergetable == false) {
286 list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length']);
288 if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
289 list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
290 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] +
$showtable['Index_length'] - $showtable['Data_free']);
294 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] +
$showtable['Index_length']);
296 list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] +
$showtable['Index_length']);
298 list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] +
$showtable['Index_length']) / $showtable['Rows'], 6, 1);
305 <table border
="0" cellspacing
="0" cellpadding
="0" class="noborder">
310 <big
><?php
echo __('Space usage') . ':'; ?
></big
>
313 <th
><?php
echo __('Type'); ?
></th
>
314 <th colspan
="2" align
="center"><?php
echo __('Usage'); ?
></th
>
317 <td style
="padding-right: 10px"><?php
echo __('Data'); ?
></td
>
318 <td align
="right"><?php
echo $data_size; ?
></td
>
319 <td
><?php
echo $data_unit; ?
></td
>
322 if (isset($index_size)) {
326 <td style
="padding-right: 10px"><?php
echo __('Index'); ?
></td
>
327 <td align
="right"><?php
echo $index_size; ?
></td
>
328 <td
><?php
echo $index_unit; ?
></td
>
332 if (isset($free_size)) {
335 <tr style
="color: #bb0000">
336 <td style
="padding-right: 10px"><?php
echo __('Overhead'); ?
></td
>
337 <td align
="right"><?php
echo $free_size; ?
></td
>
338 <td
><?php
echo $free_unit; ?
></td
>
341 <td style
="padding-right: 10px"><?php
echo __('Effective'); ?
></td
>
342 <td align
="right"><?php
echo $effect_size; ?
></td
>
343 <td
><?php
echo $effect_unit; ?
></td
>
347 if (isset($tot_size) && $mergetable == false) {
351 <td style
="padding-right: 10px"><?php
echo __('Total'); ?
></td
>
352 <td align
="right"><?php
echo $tot_size; ?
></td
>
353 <td
><?php
echo $tot_unit; ?
></td
>
362 <td width
="20"> 
;</td
>
364 <!-- Rows Statistic
-->
366 <big
><?php
echo __('Row Statistics') . ':'; ?
></big
>
369 <th
><?php
echo __('Statements'); ?
></th
>
370 <th align
="center"><?php
echo __('Value'); ?
></th
>
373 if (isset($showtable['Row_format'])) {
376 <td
><?php
echo ucfirst(__('Format')); ?
></td
>
377 <td align
="<?php echo $cell_align_left; ?>">
379 if ($showtable['Row_format'] == 'Fixed') {
381 } elseif ($showtable['Row_format'] == 'Dynamic') {
384 echo $showtable['Row_format'];
391 if (isset($showtable['Rows'])) {
394 <td
><?php
echo ucfirst(__('Rows')); ?
></td
>
396 <?php
echo PMA_formatNumber($showtable['Rows'], 0) . "\n"; ?
>
401 if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
404 <td
><?php
echo ucfirst(__('Row length')); ?
> 
;ø
;</td
>
406 <?php
echo PMA_formatNumber($showtable['Avg_row_length'], 0) . "\n"; ?
>
411 if (isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == false) {
414 <td
><?php
echo ucfirst(__(' Row size ')); ?
> 
;ø
;</td
>
416 <?php
echo $avg_size . ' ' . $avg_unit . "\n"; ?
>
421 if (isset($showtable['Auto_increment'])) {
424 <td
><?php
echo ucfirst(__('Next')); ?
> 
;Autoindex
</td
>
426 <?php
echo PMA_formatNumber($showtable['Auto_increment'], 0) . "\n"; ?
>
431 if (isset($showtable['Create_time'])) {
434 <td
><?php
echo __('Creation'); ?
></td
>
436 <?php
echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?
>
441 if (isset($showtable['Update_time'])) {
444 <td
><?php
echo __('Last update'); ?
></td
>
446 <?php
echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?
>
451 if (isset($showtable['Check_time'])) {
454 <td
><?php
echo __('Last check'); ?
></td
>
456 <?php
echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?
>
469 } // end if ($nonisam == false)
470 } // end if ($cfg['ShowStats'])
473 unset($num_rows, $show_comment);
474 echo '<hr />' . "\n";
476 echo '</div>' . "\n";
481 * Displays the footer
485 <script type
="text/javascript">
490 if (typeof(window
.print) != 'undefined') {
497 <p
class="print_ignore">
498 <input type
="button" id
="print" value
="<?php echo __('Print'); ?>"
499 onclick
="printPage()" /></p
>
502 require_once './libraries/footer.inc.php';