while i am trying to connect with python MySQLdb, i get an 'Invalid Arguments' error.

import MySQLdb
conn = MySQLdb.connect (host = "localhost",user = "root",passwd = "",db = "test")

what is the reason for getting such a error?.

But, the following code with _mysql works fine.

db=_mysql.connect("localhost","root","","test")
link|improve this question

40% accept rate
Just a note - "localhost" is the default host for MySQLdb, so you don't need to specify it. – Amber Jan 24 '11 at 7:24
feedback

2 Answers

up vote 2 down vote accepted
import MySQLdb.cursors

DATABASE= MySQLdb.connect(host='localhost', user='username', passwd='password', db='databasename', cursorclass=MySQLdb.cursors.DictCursor)

Hope it helps.

link|improve this answer
feedback

Shouldn't that be

conn = MySQLdb.connect ("localhost","root","","test")

?

(random reference: http://www.tutorialspoint.com/python/python_database_access.htm )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.