From 722e51545318193c4e87c01046373abd2b810bca Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 2 Mar 2005 11:56:39 +0000 Subject: [PATCH] bug #1126156, export options and FAQ --- ChangeLog | 2 ++ Documentation.html | 40 ++++++++++++++++++++++++++++------------ 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1484d7b1a8..9a292c5ff7 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ $Source$ 2005-03-02 Marc Delisle * main.php: bug #1154307, wrong text for alt, thanks to Isaac Bennetch - ibennetch + * Documentation.html: bug #1126156, FAQ 6.12 reworked, + thanks to Isaac Bennetch - ibennetch 2005-03-01 Marc Delisle * Documentation.html: bug #1153684, wrong doc for PDF pages generation, diff --git a/Documentation.html b/Documentation.html index 1df34c210a..576e54962e 100755 --- a/Documentation.html +++ b/Documentation.html @@ -3538,18 +3538,34 @@ To create a new, empty mimetype please see libraries/transformations/template_ge

[6.12] I want to understand some Export options.

-

- "Complete inserts" adds the column names on every INSERT command, - for better documentation (but resulting file is bigger).
- "Extended inserts" provides a shorter dump file by using only - once the INSERT verb and the table name.
- "Enclose table and field names with backquotes" ensures that - field and table names formed with special characters are protected.
- "Add AUTO_INCREMENT value" ensures, that AUTO_INCREMENT value - (if any) will be included in backup.
- "Add into comments" includes column comments, relations and MIME - types set in the PMA-DB in the dump as SQL comments (/* xxx */).
-

+

Structure:

+
    +
  • "Add DROP TABLE" will add a line telling MySQL to + drop the table, + if it already exists during the import. It does NOT drop the table after + your export, it only affects the import file.
  • +
  • "If Not Exists" will only create the table if it doesn't exist. Otherwise, + you may get an error if the table name exists but has a different structure.
  • +
  • "Add AUTO_INCREMENT value" ensures that AUTO_INCREMENT value + (if any) will be included in backup.
  • +
  • "Enclose table and field names with backquotes" ensures that + field and table names formed with special characters are protected.
  • +
  • "Add into comments" includes column comments, relations, and MIME + types set in the pmadb in the dump as SQL comments (/* xxx */).
  • +
+

Data:

+
    +
  • "Complete inserts" adds the column names on every INSERT command, + for better documentation (but resulting file is bigger).
  • +
  • "Extended inserts" provides a shorter dump file by using only + once the INSERT verb and the table name.
  • +
  • "Delayed inserts" are best explained in the + MySQL manual.
  • +
  • "Ignore inserts" treats errors as a warning instead. Again, more info + is provided in the MySQL + manual, but basically with this selected, invalid values are adjusted and inserted + rather than causing the entire statement to fail.
  • +

[6.13] I would like to create a database with a dot in its name.