0
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jun 04, 2024 — Jun 04, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Separate the functionality of setup program. Setup consists of setup.c, dlg_wingui.c, dlg_specific.c, mylog.c, xalibname.c, misc.c, loadlib.c and win_unicode.c. More... almost 9 years ago
Fix compiler warnings. More... almost 9 years ago
Regression test using MSBuild. More... almost 9 years ago
Cleanup win.mak a little for regression test on Windows. More... almost 9 years ago
Prep release 09.05.0400. More... almost 9 years ago
Add 6 expected output so as to fix regression test failures on Windows. More... almost 9 years ago
Fix a regression test failure in catalogfunctions-test. SQLTablePrivileges test case produces 5 * (1 + count of super users other than current user) lines. Limiting the output to the first 5 lines fixes the result anyway. More... almost 9 years ago
Fix some compilation warnings. More... almost 9 years ago
Improve the handling of common.obj in regression test on Windows. Now we can notice if common.c changes. Also, we don't build common.c separately for each test, instead we build common.obj once and just link it to each test. More... almost 9 years ago
Find dumpbin for the people like me who don't load C++ environment. 1. Make a function which find a dumpbin with additional PATH if necessary. 2. Make a function which get a list of dlls a dll directly or indirectly links. More... almost 9 years ago
Fix regression test failures in param-convesrions-test. Though error messages of 2 test cases about SQL_FLOAT are not so appropriate, they are not wrong. More... almost 9 years ago
Fix regression test failures in result-conversions-test on big-endian platforms. expected/result-conversions_1.out lacks 3 lines. More... almost 9 years ago
Fix regression test failures on armv7hl. 'char' type seems to mean unsigned char on the platform. Though move_direction member of QResultClass takes negative values, QR_is_moving_backward() never returns TRUE. So ensure that move_direction is signed char on any platform. More... almost 9 years ago
The following infomation is from Dave Cramer([email protected]). Prior to Visual Studio 2015 Update 3, the hook functions of type PfnDliHook __pfnDliNotifyHook2 and __pfnDliFailureHook2 were non-const. They were made const to improve security (global, writable function pointers are bad). If for backwards compatibility you require the hooks to be writable, define the macro DELAYIMP_INSECURE_WRITABLE_HOOKS prior to including this header and provide your own non-const definition of the hooks. More... almost 9 years ago
Fix a warning on non-windows platform. More... almost 9 years ago
Ignore the difference between CR LF, LF and CR line break when comparing expected and result output. More... almost 9 years ago
Fix the bug introduced by the commit 4d44165af04d40e8aad405a9fbe31d7304c654c8 that SQLGetDiagFieldW, SQLGetDescFieldW or SQLColAttributeW mistakenly returns SQL_ERROR. More... almost 9 years ago
Default of *level of rollback on errors* is default(statement) not transaction. More... almost 9 years ago
Enable COMMLOG and MYLOG button. More... almost 9 years ago
Move src/*.exe to exe/*.exe on Windows. Also use fc command instead of diff command on Windows. Fix a compilation error in large-object-data-at-exec-test.c regarding a type declaration in the middle of a code block (Patch by Michael Paquier). More... almost 9 years ago
Prep release 09.05.0300. More... almost 9 years ago
Prep release 09.05.0300. More... almost 9 years ago
Another one where 'for' loop initial declarations are only allowed in C99 mode. More... almost 9 years ago
'for' loop initial declarations are only allowed in C99 mode. More... almost 9 years ago
Implement SQL_QUERY_TIMEOUT. Patch by Tsunakawa, Takayuki. More... almost 9 years ago
fix buffer overrun in logging, and code cleanup. Patch by Tsunakawa, Takayuki. More... almost 9 years ago
Enable SQLBulkOperations in declare/fetch mode using long (>=12bytes) bookmarks. Formerly the driver offered very simple bookmark support -- it is just the current row number. Now the driver offers more verbose bookmarks which contain KeySet informations (CTID (+ OID)). Though they consume 12bytes (row number + CTID) or 16bytes (row number + CTID + OID), they are useful in declare/fetch mode. More... about 9 years ago
Add one more delete-loop to cursor-block-delete-test after rolling back to another savepoint. More... about 9 years ago
Convert tableoid to relation name in case of inheritance. More... about 9 years ago
Reflect the change in expected/result-conversions_1.out as well as expected/result-conversions.out. More... about 9 years ago