Calling a stored procedure in Python : Python : Procedure Function MySQL TUTORIALS


MySQL TUTORIALS » Procedure Function » Python »

 

Calling a stored procedure in Python


try:
              conn = MySQLdb.connect (host = 'localhost', user = 'root', passwd = 'pass', db = 'prod',
                            port=3306)
              cursor1=conn.cursor()
              cursor1.execute("CALL error_test_proc()")
              cursor1.close()
              
       except MySQLdb.Error, e:
              print "Mysql Error %d: %s" (e.args[0], e.args[1])



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Procedure Function
» Python