0
I Use This!
Inactive

Commits : Listings

Analyzed about 9 hours ago. based on code collected about 11 hours ago.
May 05, 2023 — May 05, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fixed make path More... about 19 years ago
Fixed select_iterator increment bug. Fixed sql_iterator assignment/reset bug. Incorporated bcb6 changes. More... about 19 years ago
- Committed a couple of minor bug fixes for dtl_enum and nullable. - Fixed a couple of annoying little warnings that my g++ keeps giving me. - Included a cross-3.3.3.sh file that helps and explains how I cross-compile for win32 from linux. - Fixed the #define guards (again) in CountedPtr.h. It should not affect anyone else except those who crosscompile with mingw (like me). More... about 19 years ago
- Correction, the dtl_enum wouldn't work in switch() because of ambiguous implicit conversion operators. Not sure what the true answer is, apart from "don't use implicit conversions", which I would like to use. More... about 19 years ago
- Fixed bug - assign-to-self was not correct for nullable. More... about 19 years ago
***Bugfixes*** Fixed bug in RandomDBView that caused null field flags to not be correctly passed to SelValidate - hence rows with null values were not correctly recognized. More... about 19 years ago
Updated bulk copy to not reset statement attributes so that users can pass in custom cursor attributes such as Query timeout. More... about 19 years ago
Updated code so that it would compile and run under MSVC. Fixed minor jul2str bug in wide mode. More... over 19 years ago
- Added preliminary support for JOIN syntax. Ensures that the DTL doesn't think a JOINed query has only 1 table. Seems to work so far, probably needs more work, especially to other parts of the library. More... over 19 years ago
- Fixes for compiling with mingw32 (gcc 3.4.2). - Fix for one of the tests, I use LowerCase when using the database, and one of the tests would fail regardless of DTL_LC. - Added some more QT .pro files for an alternative method of compiling. More... over 19 years ago
- Added QT pro files for compiling. You need to remove the original Makefiles for these to work. These are set up to compile the DTL as a DLL/so. More... over 19 years ago
- Added a check to avoid crashing MySQLODBC when using long LEFT-JOIN-style sql commands. The DTL passes long LEFT-JOINs as if it were just a table name (a bug we should fix), and anything longer than 150 chars causes undefined behaviour - unixODBC works fine, MySQLODBC under windows will crash. More... over 19 years ago
- Not sure why add_field() was templated by a dummy parameter, its more efficient to just define which function template you want! More... over 19 years ago
- Fixed some issues pointed out by the compiler. More... over 19 years ago
- Changes to UNICODE support (defines/ifdefs) to allow MinGW to compile the DTL. More... over 19 years ago
- Minor fix. More... over 19 years ago
- Fixed mistake in previous checkin. More... over 19 years ago
- Fixed incorrect in-class explicit template specialisation (needs to be specialised outside the class scope). More... over 19 years ago
- Ran fixed_line_endings.sh ... More... over 19 years ago
- Added flag to ensure construction/destruction of the buffer is correct. More... over 19 years ago
Fix iterator definitions for VC 8 and STLport 4.6 More... over 19 years ago
Fix BoundIO error. More... over 19 years ago
Minor fixes to compile under borland 5.5. Added docs. Prepared release notes. More... over 19 years ago
Added mingwin config More... over 19 years ago
Updated common.sh to add support for mingwin. More... over 19 years ago
- Minor fixes to SET()/ENUM() to work with new BYTE* code. More... over 19 years ago
- Changed all void* to BYTE* in BoundIO. It is possible to do static_cast<> from void* to whatever pointer you like, but it is NOT possible to do so from a BYTE*. This means all those void* casts are correctly flagged as dangerous with reinterpret_cast<>(). This also highlighted a few questionable copies (look for const_cast<> - they are usually bad news). If a type is supposed to be mutable, then it should be mutable. Unless of course the function (eg SQLSpecialColumns()) wants a mutable but we KNOW it will not change it, but that is dangerous coding practice. More... over 19 years ago
Refactoring more carefully this time. - Made the typeTranslation a member of BoundIO, now I reference its variables in BoundIO. - Replaced a bunch of C-style type casts with C++-style casts. More... over 19 years ago
- Minor changes while I learn the code, note I try to only change what I can test, and what I encounter. I try not to look for trouble ;) - Moved some brackets so VIM doesn't get confused while jumping back and forth. - Fill-constructed a vector with NULLs instead of the original for() loop. - Changed some C-style casts in favour of the newer C++ style casts. Probably didn't get all of these. - Some spelling corrections. More... over 19 years ago
- First check-in for me. - Fixed line-endings, as I don't have anything useful to contribute right now. More... over 19 years ago