Re: about accessing mysql

2005-06-10 Thread sinan ,
i checked innodb support via show variable. they have both same support. mysql version is 4.0.24_Debian-5-log MySQLdb module version is 1.2.1g2 they are same packets in debian. thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: about accessing mysql

2005-06-10 Thread deelan
sinan , wrote: (...) > these command works at my computer but when i want to do in my server, > i get these messages as you seen, my both computer and server have > same python, same MySQLdb module and same database with same > priviliges.also how can i connect to remote database? is that work ? >

Re: about accessing mysql

2005-06-10 Thread sinan ,
oh my system is debian - sarge with python 2.3 -- http://mail.python.org/mailman/listinfo/python-list

Re: about accessing mysql

2005-06-10 Thread sinan ,
hi, my table types are MyISAM both local and server, my code can reach to my locals mysql but cannot reach when running on server. -- http://mail.python.org/mailman/listinfo/python-list

Re: about accessing mysql

2005-06-10 Thread Diez B. Roggisch
sinan , wrote: > hi everybody, i have a small mysql connection code > > import MySQLdb db=MySQLdb.Connection(host="localhost",user="root",db="nux") > > Traceback (most recent call last): > File "", line 1, in ? > File "/usr/lib/python2.3/site-packages/MySQLdb/__init__.py", line > 66,

about accessing mysql

2005-06-10 Thread sinan ,
hi everybody, i have a small mysql connection code >>> import MySQLdb >>> db=MySQLdb.Connection(host="localhost",user="root",db="nux") Traceback (most recent call last): File "", line 1, in ? File "/usr/lib/python2.3/site-packages/MySQLdb/__init__.py", line 66, in Connect return Connection