Re: [Fwd: [PyQt] mem error in windows]

2008-05-07 Thread Linos
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 ---

Re: [Fwd: [PyQt] mem error in windows]

2008-05-07 Thread Phil Thompson
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

[Fwd: [PyQt] mem error in windows]

2008-05-06 Thread Linos
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),

[PyQt] mem error in windows

2008-04-28 Thread Linos
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

Re: [PyQt] mem error in windows

2008-03-06 Thread Kermit
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

[PyQt] mem error in windows

2008-03-06 Thread Mario Daniel Carugno
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