0
I Use This!
Inactive

Commits : Listings

Analyzed about 9 hours ago. based on code collected about 14 hours ago.
Apr 24, 2023 — Apr 24, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
moved other tests over from test_bugs More... almost 18 years ago
added setup and teardown methods to drop tables to ensure consistency moved repeat query test over from test_bugs.py More... almost 18 years ago
added MySQLdb test interface this driver uses mysql client libraries directly, so shuold be unaffected by any ole db bugs it can therefore be used as a reference... More... almost 18 years ago
rats, committed DOS line endings - removing More... almost 18 years ago
added comments, spacing moved imports inside driver test classes for clarity More... almost 18 years ago
added support for adodbapi (adodbapi.sf.net) this returns results in tuples, not lists, so handle accordingly make common connection params set driver as attribute more regularly More... almost 18 years ago
added tests using dbapi, using either jtoolkit or j5 as PyADO driver More... almost 18 years ago
added test for altering tables which currently fails through MyOLEDB note that QTADO just stays open on the failing statements... More... almost 18 years ago
Upped to version 3.9.6 More... almost 18 years ago
When deleting members, make sure they are set to NULL, so if shutdown happens twice there's no crash More... about 18 years ago
If the statement fails, make sure ppRowset is set to NULL, so we won't think we have a valid rowset Keep a record of whether a statement succeeds, so we can return E_FAIL if it failed when asked for the rows More... about 18 years ago
If there are no rows returned, don't allocate a rowset ref object Fix other references, so nobody tries to use the NULL object More... about 18 years ago
Stop us reexecuting statements - rather just give no information on columns which aren't there More... about 18 years ago
Calculate the extra page of memory in the correct place, so we don't run out of memory for small rows More... over 18 years ago
Removed two defuct constants: ACTIVE_ROWS_LIMIT (replaced by the number of actual rows we have to deal with) MAX_TOTAL_ROWBUFF_SIZE (replaced by failing when a machine actually runs out of RAM, not on an arbitrary boundary) More... over 18 years ago
Remove last use of limiting MAX_TOTAL_ROWBUFF_SIZE constant More... over 18 years ago
Change DBPROP_MAXOPENROWS to 0, which denotes there isn't really a limit, as we don't hard code a limit any more More... over 18 years ago
Change from using the ACTIVE_ROWS_LIMIT constant to using the m_dwTotalRows member of the query More... over 18 years ago
Make m_SlotRef a dynamic variable, dependent for its size on the total number of possible rows Change from using the ACTIVE_ROWS_LIMIT constant to using the m_dwTotalRows member of the query More... over 18 years ago
Move the TotalRows member from CMySQL to CData, where outside classes can access the value More... over 18 years ago
Regress to version 3.9.4, as we haven't actually fixed BLOBs yet More... over 18 years ago
Added 3.9.5 change More... over 18 years ago
Version 3.9.5, with BLOB support More... over 18 years ago
Add a debug error message for when we run out of our completely hard-limited memory, so if we ever hit the same bug again, it will be a lot easier to find More... over 18 years ago
Adjust tests so it also checks we're getting something legitimate from our select More... over 18 years ago
If we want support for BLOBs, we need to be able to allocate enough memory We need just less than 400K per BLOB for a maximum (ACTIVE_ROWS_LIMIT) of 200 rows, so we need 80M More... over 18 years ago
Updated Changelog.txt (a synopsis for SourceForge release of ChangeLog) Updated Readme.txt More... over 18 years ago
Updated to version 3.9.4, with fixed repeated queries and fixed strings in ADO More... over 18 years ago
First step in providing compatibility/compilability with the gcc compiler More... over 18 years ago
When converting a string to whatever's required, set the field length to the actual string length This solves the ADO string problem in MyOleDB More... over 18 years ago