* Version 3.6.7; Released January 1, 2005 * ***Bugfixes*** * Clean up casts and dummy parameters (Paul Harris). * Clean up header includes so that iterator...
Hello, I've downloaded the last version of the DTL library and I'm trying to compile it under Linux. With gcc-3.4.3 I'm getting the following error: c++...
In BoundIO.h line 575 make the change to #if !defined (__GNUC__) template <> #endif struct correct_raw_ptr<TCHAR*> { typedef TCHAR* type; }; The template<> was...
Hello everybody, I'm kinda new to this whole UNICODE business and I'd like a little help. I need to store some unicode strings in a database. Do I need to...
... help. ... Under MSVC or Borland you need to define _UNICODE and UNICODE. Unfortunately under gcc we do not support unicode yet. The reason for this is that...
... I've commented out that #define DTL_NO_UNICODE with gcc-3.3.4 and I've encountered a couple of errors. First of all, it seems to be a small conflict with...
Take a look at the C standard normative addendum 1. http://www.lysator.liu.se/c/na1.html We've tried to mostly follow this in terms of the basic unicode...
I'm trying to build the DTL 367 with MSVC 7.1.3088 using STLport 4.6.2 but get compilation errors related to the std iterator templates. What's the suggested...
The tests project has a sample STLport configuration which defines __STL_USE_OWN_NAMESPACE,__STL_USE_NAMESPACES,__STL_USE_NEW_C_HEADERS for STLport. Doing a...
OK. I had a chance to look at this with STLport 4.6 and VC 8. It seems that STLport has changed how they define some of the standard iterators in 4.6 versus...
Wow, thanks alot for the effort and quick reply Corwin. Really appreciated. I'll probably get around to testing it tomorrow. And sorry for not answering...
Hi, I'm back from my holidays so about to dive back into it. I have been having some really crippling problems, but only on the windows platform (mingw), not...
Further research on the problem (see previous email) reveals that GetFieldInfo() does NOT support table lists that involve the 'JOIN' syntax. The one...
Hi, Just stumbled onto a bug in RandomDBView, turns out the select buffer can be deallocated without being allocated! Note, I've not tested this with the...
I did not know about this kind of join syntax since most other databases do outer joins differently. Solutions: 1. Use sql_iterator. This will use your sql...
Thanks for pointing this out. I will add a flag to check the buffer before destruction. ... Tonya Harding Rejected Fantasy #3002. From the Tonya Harding...
Hi every: I am new to DTL. I meet trouble when I executed example with SAPDB. This is the result: !!!!!!!!!!!!!!!!!!!!! Begin Example CStringExample()...
The problem here is that DTL tries to be smart for the DynamicDBViews and make sure that the primary key is included in the list of columns for a table so that...
... oh, sorry I didn't realise. I checked 3 databases, it IS supported by MySQL, SqlServer but not by Oracle. Interesting... It is possible to avoid LEFT...
Hi, I'd like to request someone check out the latest CVS code and try and compile with cygwin and MSVC++6-7 (and whatever else), when they get the chance... ...
Thanks! ... Tonya Harding Rejected Fantasy #3002. From the Tonya Harding official website: http://www.tonyaharding.com/messages/rejected.cfm Fantasy Message...
Hi, Do you mind if I split the headers and the source files? I want to move the .cpp files from lib to src, and .h files from lib to dtl That way I can...
Personally, I vote no. The main reason is that if we change this directory structure then I have to go through and change all the make files + change up the...
Hi, I'm having trouble compiling with MS Visual Studio 2003 (7.1) and Stlport 4.6.2. I've tracked the problems to following headers (uppercase comments about...
We had a similar report of this problem recently from someone else. I think STLport may have changed how they define iterators in the latest release with VC...
Hello: When I run the example with SAPDB I get an error: !!!!!!!!!!!!!!!!!!!!! Begin Example TableStructExample() !!!!!!!!!!!!!!!!!!!! Objects read from DB: ...
Hi, Turns out LEFT JOIN etc is standard ANSI syntax that Oracle does support, see: http://www.dba-oracle.com/tips_oracle_left_outer_join.htm I tried to change...