| Issue 4: | MemoryError on Mac OS X | |
| 1 person starred this issue and may be notified of changes. | Back to list |
When trying to iterate through the results of a query, I'm getting a
MemoryError on Mac OS 10.4. The same exact code runs on Linux using a
similar ODBC stack. They're both using iODBC with the latest pyodbc
connecting to the same server.
connection = pyodbc.connect(settings.ETOOLS_ODBC_DSN)
cursor = connection.cursor()
cursor.execute("SELECT TOP 5 * FROM tb_FSAR_Data_SampArtReq WHERE Job_ID =
49297")
for ejob in results:
job = Job()
Nov 20, 2008
Project Member
#1
mkleehammer
Status:
Accepted
Nov 20, 2008
(No comment was entered for this change.)
Owner:
mkleehammer
Nov 21, 2008
It looks like the most recent version in github solves this problem. For reference, though: Mac OS 10.5 Python 2.5.2 Actual ODBC Driver + iODBC MS SQL
Nov 21, 2008
(No comment was entered for this change.)
Status:
Done
Nov 21, 2010
(No comment was entered for this change.)
Status:
Complete
|