Thank you Phil.
Phil Thompson escribió:
On Tuesday 06 May 2008, Linos wrote:
Phil do you have for download the source of the windows installer? this way
i could compile to have an installer without that problem.
Regards,
Miguel Angel.
Attached is the installer source.
Phil
---
On Tuesday 06 May 2008, Linos wrote:
> Phil do you have for download the source of the windows installer? this way
> i could compile to have an installer without that problem.
>
> Regards,
> Miguel Angel.
Attached is the installer source.
Phil
# PyQt4 NSIS installer script.
#
# @BS_LICENSE@
# T
Phil do you have for download the source of the windows installer? this way i could compile to have an
installer without that problem.
Regards,
Miguel Angel.
--- Begin Message ---
Hello,
i have a problem using odbc driver if i install the binary installer version (PyQt-Py2.5-gpl-4.3.3-2.exe),
Hello,
i have a problem using odbc driver if i install the binary installer version (PyQt-Py2.5-gpl-4.3.3-2.exe), if
i download qt 4.3.3, mingw32, sip-4.7.4 and PyQt-4.3.3 and compile sip and PyQt i dont have this problem, the
error it gives me when the script ends is:
the instruction at "0x0
hi,
try this for connection
db= QSqlDatabase.addDatabase("QODBC")
connectionString = "DRIVER={SQL Server};SERVER=localhost;UID=myuser;PWD=
mypassw;DATABASE=dnsMySQL;"
db.setDatabaseName(connectionString)
if not db.open():
print db.lastError().text()
sys.exit(1)
Kermit
20
Hi, i've installed pyqt4 + python2.5 in windows, and wrote a small script to
test ODBC access to
a MySQL table. The script is:
from PyQt4 import QtSql
import sys
db = QtSql.QSqlDatabase.addDatabase("QODBC")
db.setDatabaseName("dnsMySQL")
db.setHostName("localhost")
db.setUserName("myuser")
db.set