<div dir="ltr"><div><div>Hi, All<br><br></div>I am unable to connect to mysql for querying some data that I could use in my python script.<br></div><div>Here is my python script.<br><br> #!/usr/bin/python<br>import os<br>import re<br>import json<br>import MySQLdb<br>from freeswitch import *<br><br>db = MySQLdb.connect(&quot;localhost&quot;,&quot;root&quot;,&quot;hammer&quot;,&quot;gvt&quot;)<br><br>def handler(session, args):<br>        session.answer()<br>        callerNumber=session.getVariable(&quot;caller_id_number&quot;)<br>        calleeNumber=session.getVariable(&quot;destination_number&quot;<br>        consoleLog(&quot;info&quot;, callerNumber)<br>        consoleLog(&quot;info&quot;, calleeNumber)<br> <br></div><div>When i run this i got this error.<br><br>2014-09-16 04:55:18.803406 [ERR] mod_python.c:239 Error reloading module<br>2014-09-16 04:55:18.803406 [ERR] mod_python.c:164 Python Error by calling script &quot;load&quot;: &lt;class &#39;_mysql_exceptions.InternalError&#39;&gt;<br>Message: (-1, &#39;server not initialized&#39;)<br>Exception: None<br><br>Traceback (most recent call last)<br>        File: &quot;/usr/lib/python2.7/load.py&quot;, line 9, in &lt;module&gt;<br>        File: &quot;/usr/lib/python2.7/dist-packages/MySQLdb/__init__.py&quot;, line 81, in Connect<br>        File: &quot;/usr/lib/python2.7/dist-packages/MySQLdb/connections.py&quot;, line 179, in __init__<br><br></div><div>Could someone please help me out how to connect freeswitch to mysql for querying data..:)<br><br></div><div>Thanks in Advance<br></div></div>