247
|
1 Introduction
|
|
2 ============
|
|
3
|
299
|
4 * Original project homepage: https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython
|
|
5 * PyPI: http://pypi.python.org/pypi/sqlpython
|
|
6 * News: http://catherinedevlin.blogspot.com/search/label/sqlpython
|
|
7 * Current docs: http://packages.python.org/sqlpython/
|
|
8
|
247
|
9 SQLPython is a command-line interface to Oracle databases. It is intended as an alternative to Oracle's
|
|
10 SQL\*Plus. For the most part, it can be used the same way SQL\*Plus would be used; this documentation
|
|
11 focuses on the places where SQLPython differs.
|
|
12
|
283
|
13 SQLPython was created by `Luca Canali <http://canali.web.cern.ch/canali/>`_ at CERN. Most new development
|
|
14 has been done by `Catherine Devlin <http://catherinedevlin.blogspot.com/>`_.
|
247
|
15
|
283
|
16 SQLPython is based on the Python standard library's
|
|
17 `cmd <http://docs.python.org/library/cmd.html#module-cmd>`_ module, and on an extension
|
|
18 to it called `cmd2 <http://pypi.python.org/pypi/cmd2>`_. SQLPython also draws considerable
|
|
19 inspiration from two Perl-based open-source SQL clients,
|
|
20 `Senora <http://senora.sourceforge.net/>`_ and `YASQL <http://sourceforge.net/projects/yasql>`_.
|
247
|
21
|
|
22 SQLPython is currently only compatible with Oracle databases. Expanding it to other RDBMS is a dream
|
|
23 for "one fine day". Call it "SQLPython 3000". |