Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a MySQL stored procedure called test which accepts one argument. I can execute the stored procedure from python 2.7x using below code

data='Teststr'
cur = db.cursor()
cur.execute("CALL test('{0}')".format(data))

But when I use

data='Teststr'
cur = db.cursor()
cur.callproc('test',data)

I am encountering

OperationalError: (1318, 'Incorrect number of arguments for PROCEDURE MyDb.test; expected 1, got 7')

Looks like python treats each character as one argument. What am I missing here?

share|improve this question

1 Answer

up vote 5 down vote accepted

You want cur.callproc('test', (data,)) to pass a tuple of 1 element

eg:

>>> a = 'hello'
>>> len(a) # just a
5
>>> len( (a) ) # still just a
5
>>> len( (a,) ) # single element tuple containing a
1
share|improve this answer
+1 It works and Thanks a lot. I wasted my one hour on this :). – Manu Oct 23 '12 at 16:49

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.