]> git.phdru.name Git - sqlconvert.git/blob - docs/mysql2sql.rst
Update docs
[sqlconvert.git] / docs / mysql2sql.rst
1 mysql2sql
2 =========
3
4 This is mysql2sql, a mysql to sql converter. It is primary intended to
5 convert mysqldump (especially with extended INSERT syntax) to standard
6 SQL to load at least to PostgreSQL or SQLite.
7
8 The program is in the early stage of development and currently cannot do much.
9 It removes /\*! directives \*/, unescapes strings and passes everything else
10 unmodified.
11
12
13 .. highlight:: none
14
15 Command line
16 ------------
17
18 mysql2sql
19 ~~~~~~~~~
20
21 Usage::
22
23     mysql2sql [-e encoding] [-E output_encoding] [infile] [[-o] outfile]
24
25 Options::
26
27     -e ENCODING, --encoding ENCODING
28                            input/output encoding, default is utf-8
29     -E OUTPUT_ENCODING, --output-encoding OUTPUT_ENCODING
30                            separate output encoding, default is the same as
31                            `-e` except for console; for console output charset
32                            from the current locale is used
33     -P, --no-pbar          Inhibit progress bar
34     infile                 Input file, stdin if absent or '-'
35     -o, --outfile outfile  Output file, stdout if absent or '-'
36
37 If stderr is connected to the console the program displays a text mode progress
38 bar. Option `-P/--no-pbar` inhibits it.
39
40 Option `-o` is useful when infile is absent (input is redirected), for
41 example::
42
43     mysql2sql -o outfile.sql < infile.sql
44     cat infile.sql | mysql2sql -o outfile.sql
45
46 But of course it simply can be::
47
48     mysql2sql - outfile.sql < infile.sql
49     cat infile.sql | mysql2sql - outfile.sql