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
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
Comment