Re: SQL connecting

2007-01-30 Thread Scripter47
Dennis Lee Bieber skrev: On Mon, 29 Jan 2007 19:45:47 GMT, John Nagle [EMAIL PROTECTED] declaimed the following in comp.lang.python: Scripter47 wrote: Hey It got a problem with python to connect to my SQL DBs, that's installed on my apache server. how do i connect to sql? Gettting data?

SQL connecting

2007-01-29 Thread Scripter47
Hey It got a problem with python to connect to my SQL DBs, that's installed on my apache server. how do i connect to sql? Gettting data? Insert into it? it is a localserver with php if that means something here is a *REALLY* dirty solution that a have used: [CODE] from urllib import * # sql

Re: SQL connecting

2007-01-29 Thread John Nagle
Scripter47 wrote: Hey It got a problem with python to connect to my SQL DBs, that's installed on my apache server. how do i connect to sql? Gettting data? Insert into it? You need a third-party open source package called MySQLdb. John Nagle --

Re: SQL connecting

2007-01-29 Thread Scripter47
John Nagle skrev: Scripter47 wrote: Hey It got a problem with python to connect to my SQL DBs, that's installed on my apache server. how do i connect to sql? Gettting data? Insert into it? You need a third-party open source package called MySQLdb.