-Version 0.0.8 (2016-10-??)
+Version 0.0.8 (2017-03-??)
Extend tests, increase test coverage.
-Broytman SQL converter, Copyright (C) 2016 PhiloSoft Design
-Author: Oleg Broytman <phd@phdru.name>
-License: GPL
+Broytman SQL converter, Copyright (C) 2016-2017 PhiloSoft Design.
+Author: Oleg Broytman <phd@phdru.name>.
+License: GPL.
-This is sqlconvert, a library to perform SQL conversions. It uses
-sqlparse to parse SQL and SQLObject to escape SQL strings and handle
-connections.
+sqlconvert is a library to perform SQL conversions. It uses sqlparse to
+parse SQL and SQLObject to escape SQL strings and handle connections to DB
+backends.
The library is in the early stage of development and currently cannot do
much.
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
+from datetime import date
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
# General information about the project.
project = u'sqlconvert'
-copyright = u'2016, Oleg Broytman'
author = u'Oleg Broytman'
+copyright = u'2016-%d, %s' % (date.today().year, author)
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Welcome to sqlconvert's documentation!
=====================================
-This is sqlconvert, a library to implement SQL converters. It uses `sqlparse
+sqlconvert is a library to implement SQL converters. It uses `sqlparse
<https://github.com/andialbrecht/sqlparse>`_ to parse SQL and `SQLObject
-<http://sqlobject.org/>`_ to escape SQL strings and handle connections.
+<http://sqlobject.org/>`_ to escape SQL strings and handle connections to
+DB backends.
-The library is in the early stage of development and currently cannot do much.
+The library is in the early stage of development and currently cannot do
+much.
-The first goal is to implement `mysql2sql <mysql2sql.html>`_, a script intended
-primarily to convert mysqldump (especially with extended INSERT syntax) to
-standard SQL to load at least to PostgreSQL or SQLite.
+The first goal is to implement `mysql2sql <mysql2sql.html>`_, a script
+intended primarily to convert mysqldump (especially with extended INSERT
+syntax) to standard SQL to load at least to PostgreSQL or SQLite.
Contents:
Created by Oleg Broytman <phd@phdru.name>.
-Copyright (C) 2016 PhiloSoft Design.
+Copyright (C) 2016-2017 PhiloSoft Design.
License
=========
This is mysql2sql, a mysql to sql converter. It is primary intended to
-convert mysqldump (especially with extended INSERT syntax) to standard
-SQL to load at least to PostgreSQL or SQLite.
+convert mysqldump (especially with extended INSERT syntax) to standard SQL
+to load at least to PostgreSQL or SQLite.
-The program is in the early stage of development and currently cannot do much.
-It removes /\*! directives \*/, unquotes names quoted with backticks, quote
-non-lowercase names with double quotes, unescapes strings and escapes them to a
-different quoting style, and passes everything else unmodified.
+The program is in the early stage of development and currently cannot do
+much. It removes /\*! directives \*/, unquotes names quoted with backticks,
+quote non-lowercase names with double quotes, unescapes strings and escapes
+them to a different quoting style, and passes everything else unmodified.
.. highlight:: none
infile Input file, stdin if absent or '-'
-o, --outfile outfile Output file, stdout if absent or '-'
-Options `-m/-p/-s` change quoting style. `-m` sets MySQL quoting style; it's
-added to use the program in the following scenario: convert MySQL dumps with
-extended INSERTs to SQL with plain INSERTS suitable to be fed back to MySQL.
-`-p` sets PostgreSQL quoting style; it's like MySQL with additional `E''-style
-quoting
+Options `-m/-p/-s` change quoting style. `-m` sets MySQL quoting style;
+it's added to use the program in the following scenario: convert MySQL
+dumps with extended INSERTs to SQL with plain INSERTS suitable to be fed
+back to MySQL. `-p` sets PostgreSQL quoting style; it's like MySQL with
+additional `E''-style quoting
<https://www.postgresql.org/docs/9.1/static/sql-syntax-lexical.html#SQL-SYNTAX-STRINGS-ESCAPE>`_.
`-s` sets generic SQL/SQLite quoting style; this is the default.
-If stderr is connected to the console the program displays a text mode progress
-bar. Option `-P/--no-pbar` inhibits it.
+If stderr is connected to the console the program displays a text mode
+progress bar. Option `-P/--no-pbar` inhibits it.
Option `-o` is useful when infile is absent (input is redirected), for
example::