http://www.python.org/doc/topics/database/
--
http://mail.python.org/mailman/listinfo/python-list
In article <[EMAIL PROTECTED]>,
Dennis Lee Bieber <[EMAIL PROTECTED]> wrote:
>Question: Is there a DB-API module that can directly connect to the
>database server?
There certainly is for MySQL, which is what I mostly use.
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] writes:
> I need to execute sql command using a "here document" like in unix.
>
> os.popen("osql", "w").write("""\
> select * from table
> go
> """)
>
> how can i pipe these result of the select into a variable?
popen doesn't work that way. you can only open them read or writ