summaryrefslogtreecommitdiff
path: root/pgxalib.cpp
AgeCommit message (Collapse)Author
2024-10-28Correct wrong string method calls (#69)Christian Ullrich
These two calls have no effect because `std::string::empty()` only tests for emptiness, but does not cause it as apparently intended.
2017-06-02Change XAConnection so that it properly disconnect from the connection.Hiroshi Inoue
2017-06-02Add or change some mylog messages for debugging.Hiroshi Inoue
2017-05-31In xa_recover() invoked from MSDTC, the occurence of authentication error is ↵Hiroshi Inoue
unrecoverable. It seems better to return 0 rather than return error.
2017-05-31Rename "OK" button in Global settings dialog to "Save" button because the ↵Hiroshi Inoue
button updates the registry.
2015-06-23Release critical section if SQLAllocHandle() fails.Heikki Linnakangas
2014-09-23Improve pgxalib.dll(MSDTC support).Hiroshi Inoue
1. Add an option which lets xa_open() try to connect to the database immediately. This would cause an error at enlistment in dtc when the authentication method depends not only on the db user but also on the OS user, which means the automatic transaction recovery is unavailable. 2. Log the error message in case of SQLDriverConnect() error. 3. Improve the logging.
2014-03-11Whitespace and indentation fixes.Heikki Linnakangas
This also changed the file permissions stored in git for a couple of header files, removing the executable bit. Didn't realize they were different from all the others, but apparently my editor decided to change them. Now they're the same as all the other files, which seems good. Michael Paquier and me.
2013-04-24Silence some compiler warnings, when building on Windows.Heikki Linnakangas
2013-04-20Add missing comparisonHiroshi Inoue
2008-08-09Fix some bugs.Hiroshi Inoue
1. Reset the column binding information after SQLMoreResults(). 2. Save the rowset size properly for the FETCH_NEXT operation in case of >= 3.0 drivers. Enable geqo optiomizer by default.
2006-10-28Fix some bugs or warnings on 64 bit OS.Hiroshi Inoue
2006-08-31Explicitly cast the strchr() return value to stop VC++ 2k5 bleating about ↵Dave Page
losing the const qualifier.
2006-06-12The version is now 8.2.0005.Hiroshi Inoue
2006-05-19The first cut for MSDTC supprort and the version is now 8.2.0004.Hiroshi Inoue
1. Improve unknown-size estimation in case of the *longest* option. 2. Improve SQL_DEFAULT_PARAM handling.