<div>Hi everybody! I am a newbie for PyQT.Now I am&nbsp;write a simple programm which use mysql as its database,but I find it is very diffucult to use the PyQT APIs.I write sth like that:</div>
<div>&nbsp;</div>
<div><font color="#ff6666">db = QtSql.QSqlDatabase.addDatabase(&quot;QMYSQL&quot;)</font></div>
<div><font color="#ff6666">db.setHostName(&quot;<a href="http://127.0.0.1">127.0.0.1</a>&quot;)<br>db.setDatabaseName(&quot;test&quot;)<br>db.setUserName(&quot;root&quot;)<br>db.setPassword(&quot;123456&quot;)</font></div>

<div><font color="#ff6666">db.open()</font></div>
<div><font color="#ff6666"></font>&nbsp;</div>
<div align="left"><font color="#000000">but it just doesn&#39;t work.PS:My mysql version is 5.1,is that the problem? I try to use MySQLdb to implement my own QSqlDriver and&nbsp; </font>QSqlResult,Could anybody give me some examples?</div>