[Tutor] database app

2005-06-18 Thread nephish
Exactly what i was looking for. thanks gents, i didn't even know this module existed. i guess this access project will not be as intimidating as i thought. cheers ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] database app

2005-06-18 Thread Chad Crabtree
Well when working with M$ db's you should use odbc. http://www.egenix.com/files/python/mxODBC.html nephish wrote: >Hey there, > >i have used the cgi module and dig it. >heres the deal, >my employer wants me to build a dynamic website that will access a >database and display customer

Re: [Tutor] database app

2005-06-18 Thread Don Parris
On Sat, 18 Jun 2005 13:50:56 -0700 nephish <[EMAIL PROTECTED]> wrote: > Hey there, > > i have used the cgi module and dig it. > heres the deal, > my employer wants me to build a dynamic website that will access a > database and display customer > information on web. ok, easy enou

[Tutor] database app

2005-06-18 Thread nephish
Hey there, i have used the cgi module and dig it. heres the deal, my employer wants me to build a dynamic website that will access a database and display customer information on web. ok, easy enough. heres the trick. the database is MS Access. - ick. what could i do to

Re: [Tutor] Logging stdout and stderr

2005-06-18 Thread Alan G
> I'm trying to log the results of a command that I'm running via the popen2 > module to a file, while at the same time displaying its progress on the > screen. I think you need popen3... > figure out a way to simultaneously display it to the screen, kind of like > how unix's "tee" utility works.

Re: [Tutor] Logging stdout and stderr

2005-06-18 Thread Kent Johnson
[EMAIL PROTECTED] wrote: > > Hi there - > > I'm trying to log the results of a command that I'm running via the > popen2 module to a file, while at the same time displaying its progress > on the screen. So, at the end of the run, I should have the entire > output (stdout and stderr) on the scr