It's been too long since I've worked on this. Yep, I forgot to commit.
Thanks,
Beno
On Tue, Feb 15, 2011 at 5:21 PM, Jerry Hill wrote:
> On Tue, Feb 15, 2011 at 3:24 PM, Victor Subervi
> wrote:
> > It builds the table but fails from the first insertion. Trying to insert
> > using that code dire
On Tue, Feb 15, 2011 at 3:24 PM, Victor Subervi wrote:
> It builds the table but fails from the first insertion. Trying to insert
> using that code directly in MySQL does indeed work. Why?
In what way does it fail? Does it give you a stack trace, and if so,
what does it say? Does it create the
On 15/02/2011 20:24, Victor Subervi wrote:
Hi;
I have a function that calls the following class:
#!/usr/bin/python
import sys,os
sys.path.append(os.getcwd())
import MySQLdb
from login import login
import re, string
def buildTableColorShortOptions():
user, passwd, db, host = login()
datab
Hi;
I have a function that calls the following class:
#!/usr/bin/python
import sys,os
sys.path.append(os.getcwd())
import MySQLdb
from login import login
import re, string
def buildTableColorShortOptions():
user, passwd, db, host = login()
database = MySQLdb.connect(host, user, passwd, db)