Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a bit of trouble loading an CSV file into a mysql database. Here's my code:

for q in csvReader:
    name, price, LastUpdate, today = q
    co.execute("""INSERT INTO fundata (name, price, LastUpdate) VALUES(name, price, LastUpdate);""",q)

I get an error saying TypeError: not all arguments converted during string formatting.

The name column is a string, price is a float, and LastUpdate is a date. I read a bit and saw some scripts that wrapped the values in %(value)s and %(value)d (in my case instead of d I use f) but then I get a different error:

TypeError: format requires a mapping

Can anyone help show me what I am doing wrong?

Thank you!

share|improve this question
What mysql library are you using? – chmullig Mar 11 '11 at 19:58
In python I am using MySQLdb – Lostsoul Mar 11 '11 at 21:41

3 Answers

up vote 6 down vote accepted

If I recall correctly, you should use %s with MySQLdb in query to denote positions you want the argument tuple elements to be formatted.

for q in csvReader:
    name, price, LastUpdate, today = q
    co.execute("INSERT INTO fundata (name, price, LastUpdate) VALUES(%s, %s, %s);",q)

Also, I think it should be more efficient to use

co.executemany("INSERT INTO fundata (name, price, LastUpdate) VALUES(%s, %s, %s);",cvsReader)

where cvsReader is a list of tuples containing the values you need to insert.

EDIT: removed the verbatim string identifiers

share|improve this answer
Thanks Timo. I tried the first code you posted(the for statement), and still got this error: TypeError: not all arguments converted during string formatting I think I need a for loop because I need to program some more logic into my script(i.e. change names to id codes, etc..). I don't know if it helps but here's more code: co = db.cursor() dataFile= file( "funds.csv", "rb" ) csvReader= csv.reader( dataFile ) – Lostsoul Mar 11 '11 at 21:39
Sorry for late reply, but you can try to remove the verbatim string (triple quotes) identifiers and try if that fixes it. – Timo Mar 27 '11 at 15:14
   
You should use ? instead of %s for database internal value insertion – Davoud Taghawi-Nejad Aug 9 '12 at 23:46

From the error message, the execute() method is substituting your parameters into your SQL statement using %. But you haven't indicated where any of them go, so none of your parameters are being used, they are all left over, and therefore you get the message about having some left over (hey, all is some!). Read the documentation for your database driver to find out what it wants you to use as a substitution token; probably %s.

share|improve this answer

format requires mapping is because you are setting a name to the string replacement tokens and a dictionary is expected.

if you left them as %s %d %f etc. with out the parenthesis, it will take the arguments in order from a list or tuple (q)

for q in csvReader:
    co.execute("""INSERT INTO fundata (name, price, LastUpdate) VALUES(%s, %f, %s);""",q[:-1])
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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