Correctly report error when export fails.
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-03-10 Michal Cihar <michal@cihar.com>
|
||||||
|
* export.php: Correctly report error when export fails.
|
||||||
|
|
||||||
2004-03-09 Marc Delisle <lem9@users.sourceforge.net>
|
2004-03-09 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/common.lib.php, libraries/display*, lang/*:
|
* libraries/common.lib.php, libraries/display*, lang/*:
|
||||||
bug 887933: avoid generating a nested form, and show a warning
|
bug 887933: avoid generating a nested form, and show a warning
|
||||||
@@ -22,7 +25,8 @@ $Source$
|
|||||||
libraries/sqlparser.lib.php, libraries/string.lib.php,
|
libraries/sqlparser.lib.php, libraries/string.lib.php,
|
||||||
libraries/transformations/text_plain__substr.inc.php: Use charset aware
|
libraries/transformations/text_plain__substr.inc.php: Use charset aware
|
||||||
substr and strlen functions (bugs #854755 and #910575).
|
substr and strlen functions (bugs #854755 and #910575).
|
||||||
* export.php: Fix buffer length counting, fix error detection.
|
* export.php: Fix buffer length counting, fix error detection (bug
|
||||||
|
#909710).
|
||||||
* libraries/export/latex.php: Fix undefined variable warning.
|
* libraries/export/latex.php: Fix undefined variable warning.
|
||||||
* libraries/config_import.lib.php, libraries/common.lib.php,
|
* libraries/config_import.lib.php, libraries/common.lib.php,
|
||||||
libraries/display_export.lib.php, libraries/export/sql.php, lang/*: Can
|
libraries/display_export.lib.php, libraries/export/sql.php, lang/*: Can
|
||||||
|
69
export.php
69
export.php
@@ -327,8 +327,12 @@ if ($export_type == 'database') {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fake loop just to allow skip of remain of this code by break, I'd really
|
||||||
|
// need exceptions here :-)
|
||||||
|
do {
|
||||||
|
|
||||||
// Add possibly some comments to export
|
// Add possibly some comments to export
|
||||||
PMA_exportHeader();
|
if (!PMA_exportHeader()) break;
|
||||||
|
|
||||||
// Will we need relation & co. setup?
|
// Will we need relation & co. setup?
|
||||||
$do_relation = isset($GLOBALS[$what . '_relation']);
|
$do_relation = isset($GLOBALS[$what . '_relation']);
|
||||||
@@ -365,23 +369,30 @@ if ($export_type == 'server') {
|
|||||||
foreach($dblist AS $current_db) {
|
foreach($dblist AS $current_db) {
|
||||||
if ((isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))
|
if ((isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))
|
||||||
|| !isset($tmp_select)) {
|
|| !isset($tmp_select)) {
|
||||||
PMA_exportDBHeader($current_db);
|
if (!PMA_exportDBHeader($current_db))
|
||||||
PMA_exportDBCreate($current_db);
|
break 2;
|
||||||
|
if (!PMA_exportDBCreate($current_db))
|
||||||
|
break 2;
|
||||||
$tables = PMA_DBI_get_tables($current_db);
|
$tables = PMA_DBI_get_tables($current_db);
|
||||||
foreach ($tables as $table) {
|
foreach ($tables as $table) {
|
||||||
$local_query = 'SELECT * FROM ' . PMA_backquote($current_db) . '.' . PMA_backquote($table);
|
$local_query = 'SELECT * FROM ' . PMA_backquote($current_db) . '.' . PMA_backquote($table);
|
||||||
if (isset($GLOBALS[$what . '_structure'])) {
|
if (isset($GLOBALS[$what . '_structure'])) {
|
||||||
PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates);
|
if (!PMA_exportStructure($current_db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates))
|
||||||
|
break 3;
|
||||||
}
|
}
|
||||||
if (isset($GLOBALS[$what . '_data'])) {
|
if (isset($GLOBALS[$what . '_data'])) {
|
||||||
PMA_exportData($current_db, $table, $crlf, $err_url, $local_query);
|
if (!PMA_exportData($current_db, $table, $crlf, $err_url, $local_query))
|
||||||
|
break 3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PMA_exportDBFooter($current_db);
|
if (!PMA_exportDBFooter($current_db))
|
||||||
|
break 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} elseif ($export_type == 'database') {
|
} elseif ($export_type == 'database') {
|
||||||
PMA_exportDBHeader($db);
|
if (!PMA_exportDBHeader($db))
|
||||||
|
break;
|
||||||
|
|
||||||
if (isset($table_select)) {
|
if (isset($table_select)) {
|
||||||
$tmp_select = implode($table_select, '|');
|
$tmp_select = implode($table_select, '|');
|
||||||
$tmp_select = '|' . $tmp_select . '|';
|
$tmp_select = '|' . $tmp_select . '|';
|
||||||
@@ -393,16 +404,20 @@ if ($export_type == 'server') {
|
|||||||
|| !isset($tmp_select)) {
|
|| !isset($tmp_select)) {
|
||||||
|
|
||||||
if (isset($GLOBALS[$what . '_structure'])) {
|
if (isset($GLOBALS[$what . '_structure'])) {
|
||||||
PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates);
|
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates))
|
||||||
|
break 2;
|
||||||
}
|
}
|
||||||
if (isset($GLOBALS[$what . '_data'])) {
|
if (isset($GLOBALS[$what . '_data'])) {
|
||||||
PMA_exportData($db, $table, $crlf, $err_url, $local_query);
|
if (!PMA_exportData($db, $table, $crlf, $err_url, $local_query))
|
||||||
|
break 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PMA_exportDBFooter($db);
|
if (!PMA_exportDBFooter($db))
|
||||||
|
break;
|
||||||
} else {
|
} else {
|
||||||
PMA_exportDBHeader($db);
|
if (!PMA_exportDBHeader($db))
|
||||||
|
break;
|
||||||
// We export just one table
|
// We export just one table
|
||||||
|
|
||||||
if ($limit_to > 0 && $limit_from >= 0) {
|
if ($limit_to > 0 && $limit_from >= 0) {
|
||||||
@@ -420,9 +435,35 @@ if ($export_type == 'server') {
|
|||||||
$local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . $add_query;
|
$local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . $add_query;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($GLOBALS[$what . '_structure'])) PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates);
|
if (isset($GLOBALS[$what . '_structure'])) {
|
||||||
if (isset($GLOBALS[$what . '_data'])) PMA_exportData($db, $table, $crlf, $err_url, $local_query);
|
if (!PMA_exportStructure($db, $table, $crlf, $err_url, $do_relation, $do_comments, $do_mime, $do_dates))
|
||||||
PMA_exportDBFooter($db);
|
break;
|
||||||
|
}
|
||||||
|
if (isset($GLOBALS[$what . '_data'])) {
|
||||||
|
if (!PMA_exportData($db, $table, $crlf, $err_url, $local_query))
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (!PMA_exportDBFooter($db))
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
} while (FALSE);
|
||||||
|
// End of fake loop
|
||||||
|
|
||||||
|
if ($save_on_server && isset($message)) {
|
||||||
|
$js_to_run = 'functions.js';
|
||||||
|
require_once('./header.inc.php');
|
||||||
|
if ($export_type == 'server') {
|
||||||
|
$active_page = 'server_export.php';
|
||||||
|
require('./server_export.php');
|
||||||
|
} elseif ($export_type == 'database') {
|
||||||
|
$active_page = 'db_details_export.php';
|
||||||
|
require('./db_details_export.php');
|
||||||
|
} else {
|
||||||
|
$active_page = 'tbl_properties_export.php';
|
||||||
|
require('./tbl_properties_export.php');
|
||||||
|
}
|
||||||
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user