2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * Set of functions used to build CSV dumps of tables
8 if (! defined('PHPMYADMIN')) {
15 if (isset($plugin_list)) {
16 $plugin_list['htmlword'] = array(
17 'text' => 'strHTMLWord',
19 'mime_type' => 'application/vnd.ms-word',
22 array('type' => 'bool', 'name' => 'structure', 'text' => 'strStructure', 'force' => 'data'),
23 array('type' => 'bgroup', 'name' => 'data', 'text' => 'strData', 'force' => 'structure'),
24 array('type' => 'text', 'name' => 'null', 'text' => 'strReplaceNULLBy'),
25 array('type' => 'bool', 'name' => 'columns', 'text' => 'strPutColNames'),
26 array('type' => 'egroup'),
28 'options_text' => 'strOptions',
35 * @param string Text of comment
37 * @return bool Whether it suceeded
39 function PMA_exportComment($text) {
44 * Outputs export footer
46 * @return bool Whether it suceeded
50 function PMA_exportFooter() {
51 return PMA_exportOutputHandler('</body></html>');
55 * Outputs export header
57 * @return bool Whether it suceeded
61 function PMA_exportHeader() {
62 global $charset, $charset_of_file;
63 return PMA_exportOutputHandler('<html xmlns:o="urn:schemas-microsoft-com:office:office"
64 xmlns:x="urn:schemas-microsoft-com:office:word"
65 xmlns="http://www.w3.org/TR/REC-html40">
67 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
70 <meta http-equiv="Content-type" content="text/html;charset=' . (isset($charset_of_file) ?
$charset_of_file : $charset) .'" />
76 * Outputs database header
78 * @param string Database name
80 * @return bool Whether it suceeded
84 function PMA_exportDBHeader($db) {
85 return PMA_exportOutputHandler('<h1>' . $GLOBALS['strDatabase'] . ' ' . $db . '</h1>');
89 * Outputs database footer
91 * @param string Database name
93 * @return bool Whether it suceeded
97 function PMA_exportDBFooter($db) {
102 * Outputs create database database
104 * @param string Database name
106 * @return bool Whether it suceeded
110 function PMA_exportDBCreate($db) {
115 * Outputs the content of a table in CSV format
117 * @param string the database name
118 * @param string the table name
119 * @param string the end of line sequence
120 * @param string the url to go back in case of error
121 * @param string SQL query for obtaining data
123 * @return bool Whether it suceeded
127 function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
131 if (!PMA_exportOutputHandler('<h2>' . $GLOBALS['strDumpingData'] . ' ' . $table . '</h2>')) {
134 if (!PMA_exportOutputHandler('<table class="width100" cellspacing="1">')) {
138 // Gets the data from the database
139 $result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED
);
140 $fields_cnt = PMA_DBI_num_fields($result);
142 // If required, get fields name at the first line
143 if (isset($GLOBALS['htmlword_columns'])) {
144 $schema_insert = '<tr class="print-category">';
145 for ($i = 0; $i < $fields_cnt; $i++
) {
146 $schema_insert .= '<td class="print"><b>' . htmlspecialchars(stripslashes(PMA_DBI_field_name($result, $i))) . '</b></td>';
148 $schema_insert .= '</tr>';
149 if (!PMA_exportOutputHandler($schema_insert)) {
155 while ($row = PMA_DBI_fetch_row($result)) {
156 $schema_insert = '<tr class="print-category">';
157 for ($j = 0; $j < $fields_cnt; $j++
) {
158 if (!isset($row[$j]) ||
is_null($row[$j])) {
159 $value = $GLOBALS[$what . '_null'];
160 } elseif ($row[$j] == '0' ||
$row[$j] != '') {
165 $schema_insert .= '<td class="print">' . htmlspecialchars($value) . '</td>';
167 $schema_insert .= '</tr>';
168 if (!PMA_exportOutputHandler($schema_insert)) {
172 PMA_DBI_free_result($result);
173 if (!PMA_exportOutputHandler('</table>')) {
180 function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = false, $do_comments = false, $do_mime = false, $dates = false, $dummy)
184 if (!PMA_exportOutputHandler('<h2>' . $GLOBALS['strTableStructure'] . ' ' .$table . '</h2>')) {
189 * Get the unique keys in the table
191 $keys_query = 'SHOW KEYS FROM ' . PMA_backquote($table) . ' FROM '. PMA_backquote($db);
192 $keys_result = PMA_DBI_query($keys_query);
193 $unique_keys = array();
194 while ($key = PMA_DBI_fetch_assoc($keys_result)) {
195 if ($key['Non_unique'] == 0) {
196 $unique_keys[] = $key['Column_name'];
199 PMA_DBI_free_result($keys_result);
202 * Gets fields properties
204 PMA_DBI_select_db($db);
205 $local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
206 $result = PMA_DBI_query($local_query);
207 $fields_cnt = PMA_DBI_num_rows($result);
209 // Check if we can use Relations (Mike Beck)
210 if ($do_relation && !empty($cfgRelation['relation'])) {
211 // Find which tables are related with the current one and write it in
213 $res_rel = PMA_getForeigners($db, $table);
215 if ($res_rel && count($res_rel) > 0) {
225 * Displays the table structure
227 if (!PMA_exportOutputHandler('<table class="width100" cellspacing="1">')) {
232 if ($do_relation && $have_rel) {
235 if ($do_comments && $cfgRelation['commwork']) {
238 if ($do_mime && $cfgRelation['mimework']) {
242 $schema_insert = '<tr class="print-category">';
243 $schema_insert .= '<th class="print">' . htmlspecialchars($GLOBALS['strField']) . '</th>';
244 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strType']) . '</b></td>';
245 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strNull']) . '</b></td>';
246 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strDefault']) . '</b></td>';
247 if ($do_relation && $have_rel) {
248 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strLinksTo']) . '</b></td>';
251 $schema_insert .= '<td class="print"><b>' . htmlspecialchars($GLOBALS['strComments']) . '</b></td>';
252 $comments = PMA_getComments($db, $table);
254 if ($do_mime && $cfgRelation['mimework']) {
255 $schema_insert .= '<td class="print"><b>' . htmlspecialchars('MIME') . '</b></td>';
256 $mime_map = PMA_getMIME($db, $table, true);
258 $schema_insert .= '</tr>';
260 if (!PMA_exportOutputHandler($schema_insert)) {
264 while ($row = PMA_DBI_fetch_assoc($result)) {
266 $schema_insert = '<tr class="print-category">';
267 $type = $row['Type'];
268 // reformat mysql query output - staybyte - 9. June 2001
269 // loic1: set or enum types: slashes single quotes inside options
270 if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
271 $tmp[2] = substr(preg_replace('/([^,])\'\'/', '\\1\\\'', ',' . $tmp[2]), 1);
272 $type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
279 $type_nowrap = ' nowrap="nowrap"';
280 $type = preg_replace('/BINARY/i', '', $type);
281 $type = preg_replace('/ZEROFILL/i', '', $type);
282 $type = preg_replace('/UNSIGNED/i', '', $type);
287 $binary = preg_match('/BINARY/i', $row['Type']);
288 $unsigned = preg_match('/UNSIGNED/i', $row['Type']);
289 $zerofill = preg_match('/ZEROFILL/i', $row['Type']);
291 $strAttribute = ' ';
293 $strAttribute = 'BINARY';
296 $strAttribute = 'UNSIGNED';
299 $strAttribute = 'UNSIGNED ZEROFILL';
301 if (!isset($row['Default'])) {
302 if ($row['Null'] != 'NO') {
303 $row['Default'] = 'NULL';
306 $row['Default'] = $row['Default'];
311 if (in_array($row['Field'], $unique_keys)) {
312 $fmt_pre = '<b>' . $fmt_pre;
313 $fmt_post = $fmt_post . '</b>';
315 if ($row['Key']=='PRI') {
316 $fmt_pre = '<i>' . $fmt_pre;
317 $fmt_post = $fmt_post . '</i>';
319 $schema_insert .= '<td class="print">' . $fmt_pre . htmlspecialchars($row['Field']) . $fmt_post . '</td>';
320 $schema_insert .= '<td class="print">' . htmlspecialchars($type) . '</td>';
321 $schema_insert .= '<td class="print">' . htmlspecialchars(($row['Null'] == '' ||
$row['Null'] == 'NO') ?
$GLOBALS['strNo'] : $GLOBALS['strYes']) . '</td>';
322 $schema_insert .= '<td class="print">' . htmlspecialchars(isset($row['Default']) ?
$row['Default'] : '') . '</td>';
324 $field_name = $row['Field'];
326 if ($do_relation && $have_rel) {
327 $schema_insert .= '<td class="print">' . (isset($res_rel[$field_name]) ?
htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '') . '</td>';
329 if ($do_comments && $cfgRelation['commwork']) {
330 $schema_insert .= '<td class="print">' . (isset($comments[$field_name]) ?
htmlspecialchars($comments[$field_name]) : '') . '</td>';
332 if ($do_mime && $cfgRelation['mimework']) {
333 $schema_insert .= '<td class="print">' . (isset($mime_map[$field_name]) ?
htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype'])) : '') . '</td>';
336 $schema_insert .= '</tr>';
338 if (!PMA_exportOutputHandler($schema_insert)) {
342 PMA_DBI_free_result($result);
344 return PMA_exportOutputHandler('</table>');