Mercurial > sqlpython
annotate docs/source/intro.rst @ 325:8721372d81be
Added tag 1.6.4 for changeset 9cbea1d8872e
author | Catherine Devlin <catherine.devlin@gmail.com> |
---|---|
date | Fri, 03 Apr 2009 13:09:59 -0400 |
parents | 22fc9a350eaa |
children | 3efffbf7481f |
rev | line source |
---|---|
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 |
312
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
14 has been done by `Catherine Devlin <http://catherinedevlin.blogspot.com/>`_. The development trunk (very unstable) is at `assembla <https://www.assembla.com/wiki/show/sqlpython>`_; you can install the trunk on your machine with:: |
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
15 |
313
22fc9a350eaa
finally, ls working right
catherine@Elli.myhome.westell.com
parents:
312
diff
changeset
|
16 hg clone http://hg.assembla.com/python-cmd2 cmd2 |
22fc9a350eaa
finally, ls working right
catherine@Elli.myhome.westell.com
parents:
312
diff
changeset
|
17 cd cmd2 |
22fc9a350eaa
finally, ls working right
catherine@Elli.myhome.westell.com
parents:
312
diff
changeset
|
18 python setup.py develop |
22fc9a350eaa
finally, ls working right
catherine@Elli.myhome.westell.com
parents:
312
diff
changeset
|
19 |
312
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
20 hg clone http://hg.assembla.com/sqlpython sqlpython |
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
21 cd sqlpython |
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
22 python setup.py develop |
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
23 |
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
24 Using `hg pull`, `hg update` subsequently will update from the current trunk. |
247 | 25 |
283 | 26 SQLPython is based on the Python standard library's |
27 `cmd <http://docs.python.org/library/cmd.html#module-cmd>`_ module, and on an extension | |
28 to it called `cmd2 <http://pypi.python.org/pypi/cmd2>`_. SQLPython also draws considerable | |
29 inspiration from two Perl-based open-source SQL clients, | |
30 `Senora <http://senora.sourceforge.net/>`_ and `YASQL <http://sourceforge.net/projects/yasql>`_. | |
247 | 31 |
32 SQLPython is currently only compatible with Oracle databases. Expanding it to other RDBMS is a dream | |
312
c6abd01fe3e1
added link to assembla to docs
catherine@Elli.myhome.westell.com
parents:
299
diff
changeset
|
33 for "one fine day". Call it "SQLPython 3000". |