2 /* vim: set expandtab sw=4 ts=4 sts=4: */
11 require_once './libraries/common.inc.php';
13 require './libraries/tbl_common.php';
16 * Gets the variables sent or posted to this script, then displays headers
19 if (! isset($selected_tbl)) {
20 require_once './libraries/header.inc.php';
25 if (! isset($the_tables) ||
! is_array($the_tables)) {
26 $the_tables = array();
30 * Gets the relations settings
32 require_once './libraries/relation.lib.php';
33 require_once './libraries/transformations.lib.php';
34 require_once './libraries/tbl_indexes.lib.php';
36 $cfgRelation = PMA_getRelationsParam();
39 * Defines the url to return to in case of error in a sql statement
42 $err_url = 'tbl_sql.php?' . PMA_generate_common_url($db, $table);
44 $err_url = 'db_sql.php?' . PMA_generate_common_url($db);
49 * Selects the database
51 PMA_DBI_select_db($db);
55 * Multi-tables printview thanks to Christophe Gesche from the "MySQL Form
56 * Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
58 if (isset($selected_tbl) && is_array($selected_tbl)) {
59 $the_tables = $selected_tbl;
60 } elseif (strlen($table)) {
61 $the_tables[] = $table;
63 $multi_tables = (count($the_tables) > 1);
66 if (empty($GLOBALS['is_header_sent'])) {
67 require_once './libraries/header.inc.php';
70 foreach ($the_tables as $key => $table) {
71 $tbl_list .= (empty($tbl_list) ?
'' : ', ')
72 . PMA_backquote(urldecode($table));
74 echo '<b>'. $strShowTables . ': ' . $tbl_list . '</b>' . "\n";
78 $tables_cnt = count($the_tables);
81 foreach ($the_tables as $key => $table) {
82 $table = urldecode($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 $result = PMA_DBI_query(
96 'SHOW TABLE STATUS LIKE \'' . PMA_sqlAddslashes($table, true) . '\';');
97 $showtable = PMA_DBI_fetch_assoc($result);
98 $num_rows = (isset($showtable['Rows']) ?
$showtable['Rows'] : 0);
99 $show_comment = (isset($showtable['Comment']) ?
$showtable['Comment'] : '');
100 PMA_DBI_free_result($result);
102 $tbl_is_view = PMA_Table
::isView($db, $table);
104 // Gets table keys and store them in arrays
106 $indexes_info = array();
107 $indexes_data = array();
108 $ret_keys = PMA_get_indexes($table, $err_url_0);
110 PMA_extract_indexes($ret_keys, $indexes, $indexes_info, $indexes_data);
113 * Gets fields properties
115 $result = PMA_DBI_query(
116 'SHOW FIELDS FROM ' . PMA_backquote($table) . ';', null,
117 PMA_DBI_QUERY_STORE
);
118 $fields_cnt = PMA_DBI_num_rows($result);
121 // We need this to correctly learn if a TIMESTAMP is NOT NULL, since
122 // SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL
123 // and SHOW CREATE TABLE says NOT NULL (tested
124 // in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
126 $show_create_table = PMA_DBI_fetch_value(
127 'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
129 $analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
131 // Check if we can use Relations (Mike Beck)
132 if (!empty($cfgRelation['relation'])) {
133 // Find which tables are related with the current one and write it in
135 $res_rel = PMA_getForeigners($db, $table);
137 if (count($res_rel) > 0) {
148 * Displays the comments of the table if MySQL >= 3.23
150 if (!empty($show_comment)) {
151 echo $strTableComments . ': ' . htmlspecialchars($show_comment) . '<br /><br />';
155 * Displays the table structure
159 <!-- TABLE INFORMATIONS
-->
160 <table style
="width: 100%;">
163 <th
><?php
echo $strField; ?
></th
>
164 <th
><?php
echo $strType; ?
></th
>
165 <!--<th
><?php
echo $strAttr; ?
></th
>-->
166 <th
><?php
echo $strNull; ?
></th
>
167 <th
><?php
echo $strDefault; ?
></th
>
168 <!--<th
><?php
echo $strExtra; ?
></th
>-->
171 echo '<th>' . $strLinksTo . '</th>' . "\n";
173 if ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION
>= 40100) {
174 echo ' <th>' . $strComments . '</th>' . "\n";
176 if ($cfgRelation['mimework']) {
177 echo ' <th>MIME</th>' . "\n";
184 while ($row = PMA_DBI_fetch_assoc($result)) {
185 $type = $row['Type'];
186 // reformat mysql query output - staybyte - 9. June 2001
187 // loic1: set or enum types: slashes single quotes inside options
188 if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
189 $tmp[2] = substr(preg_replace('@([^,])\'\'@', '\\1\\\'',
191 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
197 $type = preg_replace('@BINARY@i', '', $type);
198 $type = preg_replace('@ZEROFILL@i', '', $type);
199 $type = preg_replace('@UNSIGNED@i', '', $type);
204 $binary = stristr($row['Type'], 'binary');
205 $unsigned = stristr($row['Type'], 'unsigned');
206 $zerofill = stristr($row['Type'], 'zerofill');
208 $strAttribute = ' ';
210 $strAttribute = 'BINARY';
213 $strAttribute = 'UNSIGNED';
216 $strAttribute = 'UNSIGNED ZEROFILL';
218 if (!isset($row['Default'])) {
219 if ($row['Null'] != '' && $row['Null'] != 'NO') {
220 $row['Default'] = '<i>NULL</i>';
223 $row['Default'] = htmlspecialchars($row['Default']);
225 $field_name = htmlspecialchars($row['Field']);
227 // here, we have a TIMESTAMP that SHOW FULL FIELDS reports as having the
228 // NULL attribute, but SHOW CREATE TABLE says the contrary. Believe
231 * @todo merge this logic with the one in tbl_structure.php
232 * or move it in a function similar to PMA_DBI_get_columns_full()
233 * but based on SHOW CREATE TABLE because information_schema
234 * cannot be trusted in this case (MySQL bug)
236 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']) {
243 if (isset($pk_array[$row['Field']])) {
244 echo ' <u>' . $field_name . '</u>' . "\n";
246 echo ' ' . $field_name . "\n";
250 <td
><?php
echo $type; ?
><bdo dir
="ltr"></bdo
></td
>
251 <!--<td
><?php
echo $strAttribute; ?
></td
>-->
252 <td
><?php
echo (($row['Null'] == '' ||
$row['Null'] == 'NO') ?
$strNo : $strYes); ?
> 
;</td
>
253 <td
><?php
if (isset($row['Default'])) { echo $row['Default']; } ?
> 
;</td
>
254 <!--<td
><?php
echo $row['Extra']; ?
> 
;</td
>-->
258 if (isset($res_rel[$field_name])) {
259 echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field']);
261 echo ' </td>' . "\n";
263 if ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION
>= 40100) {
265 $comments = PMA_getComments($db, $table);
266 if (isset($comments[$field_name])) {
267 echo htmlspecialchars($comments[$field_name]);
269 echo ' </td>' . "\n";
271 if ($cfgRelation['mimework']) {
272 $mime_map = PMA_getMIME($db, $table, true);
275 if (isset($mime_map[$field_name])) {
276 echo htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype']));
278 echo ' </td>' . "\n";
284 PMA_DBI_free_result($result);
292 && ($db != 'information_schema' || PMA_MYSQL_INT_VERSION
< 50002)) {
297 $index_count = (isset($indexes))
300 if ($index_count > 0) {
306 <big
><?php
echo $strIndexes . ':'; ?
></big
>
309 <th
><?php
echo $strKeyname; ?
></th
>
310 <th
><?php
echo $strType; ?
></th
>
311 <th
><?php
echo $strCardinality; ?
></th
>
312 <th colspan
="2"><?php
echo $strField; ?
></th
>
316 PMA_show_indexes($table, $indexes, $indexes_info, $indexes_data, true, true);
322 } // end display indexes
326 * Displays Space usage and row statistics
328 * staybyte - 9 June 2001
330 if ($cfg['ShowStats']) {
332 if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
335 if ($nonisam == false) {
338 if (isset($showtable['Type']) && $showtable['Type'] == 'MRG_MyISAM') {
341 list($data_size, $data_unit) = PMA_formatByteDown($showtable['Data_length']);
342 if ($mergetable == false) {
343 list($index_size, $index_unit) = PMA_formatByteDown($showtable['Index_length']);
345 if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
346 list($free_size, $free_unit) = PMA_formatByteDown($showtable['Data_free']);
347 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] +
$showtable['Index_length'] - $showtable['Data_free']);
351 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] +
$showtable['Index_length']);
353 list($tot_size, $tot_unit) = PMA_formatByteDown($showtable['Data_length'] +
$showtable['Index_length']);
355 list($avg_size, $avg_unit) = PMA_formatByteDown(($showtable['Data_length'] +
$showtable['Index_length']) / $showtable['Rows'], 6, 1);
362 <table border
="0" cellspacing
="0" cellpadding
="0" class="noborder">
367 <big
><?php
echo $strSpaceUsage . ':'; ?
></big
>
370 <th
><?php
echo $strType; ?
></th
>
371 <th colspan
="2" align
="center"><?php
echo $strUsage; ?
></th
>
374 <td style
="padding-right: 10px"><?php
echo $strData; ?
></td
>
375 <td align
="right"><?php
echo $data_size; ?
></td
>
376 <td
><?php
echo $data_unit; ?
></td
>
379 if (isset($index_size)) {
383 <td style
="padding-right: 10px"><?php
echo $strIndex; ?
></td
>
384 <td align
="right"><?php
echo $index_size; ?
></td
>
385 <td
><?php
echo $index_unit; ?
></td
>
389 if (isset($free_size)) {
392 <tr style
="color: #bb0000">
393 <td style
="padding-right: 10px"><?php
echo $strOverhead; ?
></td
>
394 <td align
="right"><?php
echo $free_size; ?
></td
>
395 <td
><?php
echo $free_unit; ?
></td
>
398 <td style
="padding-right: 10px"><?php
echo $strEffective; ?
></td
>
399 <td align
="right"><?php
echo $effect_size; ?
></td
>
400 <td
><?php
echo $effect_unit; ?
></td
>
404 if (isset($tot_size) && $mergetable == false) {
408 <td style
="padding-right: 10px"><?php
echo $strTotalUC; ?
></td
>
409 <td align
="right"><?php
echo $tot_size; ?
></td
>
410 <td
><?php
echo $tot_unit; ?
></td
>
419 <td width
="20"> 
;</td
>
421 <!-- Rows Statistic
-->
423 <big
><?php
echo $strRowsStatistic . ':'; ?
></big
>
426 <th
><?php
echo $strStatement; ?
></th
>
427 <th align
="center"><?php
echo $strValue; ?
></th
>
430 if (isset($showtable['Row_format'])) {
433 <td
><?php
echo ucfirst($strFormat); ?
></td
>
434 <td align
="<?php echo $cell_align_left; ?>">
436 if ($showtable['Row_format'] == 'Fixed') {
438 } elseif ($showtable['Row_format'] == 'Dynamic') {
441 echo $showtable['Row_format'];
448 if (isset($showtable['Rows'])) {
451 <td
><?php
echo ucfirst($strRows); ?
></td
>
453 <?php
echo PMA_formatNumber($showtable['Rows'], 0) . "\n"; ?
>
458 if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
461 <td
><?php
echo ucfirst($strRowLength); ?
> 
;ø
;</td
>
463 <?php
echo PMA_formatNumber($showtable['Avg_row_length'], 0) . "\n"; ?
>
468 if (isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == false) {
471 <td
><?php
echo ucfirst($strRowSize); ?
> 
;ø
;</td
>
473 <?php
echo $avg_size . ' ' . $avg_unit . "\n"; ?
>
478 if (isset($showtable['Auto_increment'])) {
481 <td
><?php
echo ucfirst($strNext); ?
> 
;Autoindex
</td
>
483 <?php
echo PMA_formatNumber($showtable['Auto_increment'], 0) . "\n"; ?
>
488 if (isset($showtable['Create_time'])) {
491 <td
><?php
echo $strStatCreateTime; ?
></td
>
493 <?php
echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?
>
498 if (isset($showtable['Update_time'])) {
501 <td
><?php
echo $strStatUpdateTime; ?
></td
>
503 <?php
echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?
>
508 if (isset($showtable['Check_time'])) {
511 <td
><?php
echo $strStatCheckTime; ?
></td
>
513 <?php
echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?
>
526 } // end if ($nonisam == false)
527 } // end if ($cfg['ShowStats'])
530 unset($ret_keys, $num_rows, $show_comment);
531 echo '<hr />' . "\n";
533 echo '</div>' . "\n";
538 * Displays the footer
542 <script type
="text/javascript">
547 if (typeof(window
.print) != 'undefined') {
554 <p
class="print_ignore">
555 <input type
="button" id
="print" value
="<?php echo $strPrint; ?>"
556 onclick
="printPage()" /></p
>
559 require_once './libraries/footer.inc.php';