sorry, wrong version checked in
[phpmyadmin/arisferyanto.git] / db_datadict.php
blobb929e0cf394898c9d8fed05ec7e82aa1e2c07ae0
1 <?php
2 /* $Id$ */
5 /**
6 * Gets the variables sent or posted to this script, then displays headers
7 */
8 require_once('./libraries/common.lib.php');
10 if (!isset($selected_tbl)) {
11 require_once('./header.inc.php');
15 /**
16 * Gets the relations settings
18 require_once('./libraries/relation.lib.php');
19 require_once('./libraries/transformations.lib.php');
21 $cfgRelation = PMA_getRelationsParam();
23 /**
24 * Check parameters
26 PMA_checkParameters(array('db'));
28 /**
29 * Defines the url to return to in case of error in a sql statement
31 if (isset($table)) {
32 $err_url = 'tbl_properties.php?' . PMA_generate_common_url($db, $table);
33 } else {
34 $err_url = 'db_details.php?' . PMA_generate_common_url($db);
37 if ($cfgRelation['commwork']) {
38 $comment = PMA_getComments($db);
40 /**
41 * Displays DB comment
43 if (is_array($comment)) {
45 <p> <?php echo $strDBComment; ?>
46 <i><?php echo htmlspecialchars( implode( ' ', $comment ) ); ?></i></p>
47 <?php
48 } // end if
51 /**
52 * Selects the database and gets tables names
54 PMA_DBI_select_db($db);
55 $rowset = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', NULL, PMA_DBI_QUERY_STORE);
57 $count = 0;
58 while ($row = PMA_DBI_fetch_assoc($rowset)) {
59 $myfieldname = 'Tables_in_' . htmlspecialchars($db);
60 $table = $row[$myfieldname];
61 if ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION >= 40100) {
62 $comments = PMA_getComments($db, $table);
65 if ($count != 0) {
66 echo '<div style="page-break-before: always;">' . "\n";
67 } else {
68 echo '<div>' . "\n";
71 echo '<h2>' . $table . '</h2>' . "\n";
73 /**
74 * Gets table informations
76 // The 'show table' statement works correct since 3.23.03
77 $showtable = PMA_DBI_get_tables_full( $db, $table );
78 $num_rows = (isset($showtable[$table]['TABLE_ROWS']) ? $showtable[$table]['TABLE_ROWS'] : 0);
79 $show_comment = (isset($showtable[$table]['TABLE_COMMENT']) ? $showtable[$table]['TABLE_COMMENT'] : '');
80 unset( $showtable );
83 /**
84 * Gets table keys and retains them
87 PMA_DBI_select_db($db);
88 $result = PMA_DBI_query('SHOW KEYS FROM ' . PMA_backquote($table) . ';');
89 $primary = '';
90 $indexes = array();
91 $lastIndex = '';
92 $indexes_info = array();
93 $indexes_data = array();
94 $pk_array = array(); // will be use to emphasis prim. keys in the table
95 // view
96 while ($row = PMA_DBI_fetch_assoc($result)) {
97 // Backups the list of primary keys
98 if ($row['Key_name'] == 'PRIMARY') {
99 $primary .= $row['Column_name'] . ', ';
100 $pk_array[$row['Column_name']] = 1;
102 // Retains keys informations
103 if ($row['Key_name'] != $lastIndex ){
104 $indexes[] = $row['Key_name'];
105 $lastIndex = $row['Key_name'];
107 $indexes_info[$row['Key_name']]['Sequences'][] = $row['Seq_in_index'];
108 $indexes_info[$row['Key_name']]['Non_unique'] = $row['Non_unique'];
109 if (isset($row['Cardinality'])) {
110 $indexes_info[$row['Key_name']]['Cardinality'] = $row['Cardinality'];
112 // I don't know what does following column mean....
113 // $indexes_info[$row['Key_name']]['Packed'] = $row['Packed'];
115 $indexes_info[$row['Key_name']]['Comment'] = $row['Comment'];
117 $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name'];
118 if (isset($row['Sub_part'])) {
119 $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Sub_part'] = $row['Sub_part'];
122 } // end while
123 if ($result) {
124 PMA_DBI_free_result($result);
129 * Gets fields properties
131 $result = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table) . ';', NULL, PMA_DBI_QUERY_STORE);
132 $fields_cnt = PMA_DBI_num_rows($result);
133 // Check if we can use Relations (Mike Beck)
134 if (!empty($cfgRelation['relation'])) {
135 // Find which tables are related with the current one and write it in
136 // an array
137 $res_rel = PMA_getForeigners($db, $table);
139 if (count($res_rel) > 0) {
140 $have_rel = TRUE;
141 } else {
142 $have_rel = FALSE;
145 else {
146 $have_rel = FALSE;
147 } // end if
151 * Displays the comments of the table if MySQL >= 3.23
153 if (!empty($show_comment)) {
154 echo $strTableComments . ': ' . $show_comment . '<br /><br />';
158 * Displays the table structure
162 <table width="100%" class="print">
163 <tr><th width="50"><?php echo $strField; ?></th>
164 <th width="80"><?php echo $strType; ?></th>
165 <?php /* <th width="50"><?php echo $strAttr; ?></th>*/ ?>
166 <th width="40"><?php echo $strNull; ?></th>
167 <th width="70"><?php echo $strDefault; ?></th>
168 <?php /* <th width="50"><?php echo $strExtra; ?></th>*/ ?>
169 <?php
170 if ($have_rel) {
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";
180 </tr>
181 <?php
182 $odd_row = true;
183 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\\\'', ',' . $tmp[2]), 1);
190 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
191 $type_nowrap = '';
193 $binary = 0;
194 $unsigned = 0;
195 $zerofill = 0;
196 } else {
197 $binary = stristr($row['Type'], 'binary');
198 $unsigned = stristr($row['Type'], 'unsigned');
199 $zerofill = stristr($row['Type'], 'zerofill');
200 $type_nowrap = ' nowrap="nowrap"';
201 $type = preg_replace('@BINARY@i', '', $type);
202 $type = preg_replace('@ZEROFILL@i', '', $type);
203 $type = preg_replace('@UNSIGNED@i', '', $type);
204 if (empty($type)) {
205 $type = ' ';
208 $strAttribute = ' ';
209 if ($binary) {
210 $strAttribute = 'BINARY';
212 if ($unsigned) {
213 $strAttribute = 'UNSIGNED';
215 if ($zerofill) {
216 $strAttribute = 'UNSIGNED ZEROFILL';
218 if (!isset($row['Default'])) {
219 if ($row['Null'] != '') {
220 $row['Default'] = '<i>NULL</i>';
222 } else {
223 $row['Default'] = htmlspecialchars($row['Default']);
225 $field_name = htmlspecialchars($row['Field']);
227 <tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
228 <td nowrap="nowrap">
229 <?php
230 if (isset($pk_array[$row['Field']])) {
231 echo '<u>' . $field_name . '</u>';
232 } else {
233 echo $field_name;
236 </td>
237 <td<?php echo $type_nowrap; ?> xml:lang="en" dir="ltr"><?php echo $type; ?></td>
238 <?php /* <td<?php echo $type_nowrap; ?>><?php echo $strAttribute; ?></td>*/ ?>
239 <td><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?></td>
240 <td nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?></td>
241 <?php /* <td<?php echo $type_nowrap; ?>><?php echo $row['Extra']; ?></td>*/ ?>
242 <?php
243 if ($have_rel) {
244 echo ' <td>';
245 if (isset($res_rel[$field_name])) {
246 echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field']);
248 echo '</td>' . "\n";
250 if ($cfgRelation['commwork'] || PMA_MYSQL_INT_VERSION >= 40100) {
251 echo ' <td>';
252 if (isset($comments[$field_name])) {
253 echo htmlspecialchars($comments[$field_name]);
255 echo '</td>' . "\n";
257 if ($cfgRelation['mimework']) {
258 $mime_map = PMA_getMIME($db, $table, true);
260 echo ' <td>';
261 if (isset($mime_map[$field_name])) {
262 echo htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype']));
264 echo '</td>' . "\n";
267 </tr>
268 <?php
269 } // end while
270 PMA_DBI_free_result( $result );
271 $count++;
273 </table>
274 </div>
275 <?php
276 } //ends main while
279 * Displays the footer
282 <script type="text/javascript" language="javascript">
283 //<![CDATA[
284 function printPage()
286 document.getElementById('print').style.visibility = 'hidden';
287 // Do print the page
288 if (typeof(window.print) != 'undefined') {
289 window.print();
291 document.getElementById('print').style.visibility = '';
293 //]]>
294 </script>
295 <?php
296 echo '<br /><br /><input type="button" id="print" value="' . $strPrint . '" onclick="printPage()" />';
298 require_once('./footer.inc.php');