hi 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?
thanks
--
http://mail.python.org/mailman/listinfo/python-list
