> Thanks for your answers.
> I would like to document with Python PL/SQL of programs, so similarly
> as javadoc for Java.
> I do not know whether it is possible. If yes, I would like to know how.
All of the source code for procedures and packages in an oracle
database can be retreived from the USE
vb_bv wrote:
> Thanks for your answers.
> I would like to document with Python PL/SQL of programs, so similarly
> as javadoc for Java.
> I do not know whether it is possible. If yes, I would like to know how.
Is it possible - yes. Has it been done? I doubt it. You can fetch the
sourcecode of ora
Thanks for your answers.
I would like to document with Python PL/SQL of programs, so similarly
as javadoc for Java.
I do not know whether it is possible. If yes, I would like to know how.
Thx
--
http://mail.python.org/mailman/listinfo/python-list
Gerhard Häring <[EMAIL PROTECTED]> writes:
> In my not so humble opinion, instead of all this fancy stuff, you will be
> better off writing your stored procedures in PL/SQL, which is a very good
> language for manipulating data, and writing portable, efficient and
> maintainable server-side databa
infidel wrote:
> vb_bv wrote:
>
>>Does Pyton PL/SQL programming language of Oracle support?
>>
> PL/SQL is only supported *inside* Oracle databases. Python can be used
> to call PL/SQL procedures (I recommend the cx_Oracle module), but you
> can't run Python inside the database like PL/SQL.
If o
vb_bv wrote:
> Does Pyton PL/SQL programming language of Oracle support?
Python supports calling Oracle PL/SQL procedures. Here's an example
using the cx_Oracle database adapter:
>>> import cx_Oracle
>>> con = cx_Oracle.connect("outlinetest/[EMAIL PROTECTED]")
>>> cur = con.cursor()
>>> cur.
vb_bv wrote:
> Does Pyton PL/SQL programming language of Oracle support?
>
> Thx
PL/SQL is only supported *inside* Oracle databases. Python can be used
to call PL/SQL procedures (I recommend the cx_Oracle module), but you
can't run Python inside the database like PL/SQL.
--
http://mail.python.
Does Pyton PL/SQL programming language of Oracle support?
Thx
--
http://mail.python.org/mailman/listinfo/python-list