Hi I use bcb-ent-v6 servicepack 2 . It is not possible to compile the dtl tests.BCBProject in dtl version 3.4. It fails sin "DBIndex.h" while defining...
Hi everybody, I'm trying to build a COM object with Visual C++ 6 (SP5). I'm not using MFC/ATL and it compiles well, but it has some error like these when...
The problem is you are using inconsistent project settings under MSVC. Look at project settings -> C++ -> Category = Code Generation -> Use run time library. ...
I am not positive, but it looks like you are mixing the multithreaded and single threaded libraries. Check you Code Generation options for the DTL lib and...
The changes for VC7 are trivial, just a couple tweaks in the tcstring header file. We just haven't gotten around to packaging up a new release yet (we should...
Hello to all, following the brief exchange I got with Corwin (see message thread ID 483) I finally got DTL to compile with VC7. BUt when trying to compile the...
Stange... I had the dev snapshot compling with VC7. I will take a look at tuesday, likely I made some last minute change under VC6 that broke things. ... From:...
Thanks for your time :) I'm looking forward to your investigation !!! Luc. ... IdxContainer=_STL::hash_multiset<dtl::DBView<ExampleCStr,dtl::DefaultParamOb ......
Sure enough, VC7 did flip out on the old Dev snapshot. I've put out an updated snapshot that compiles on: VC6, VC7, HPUX, and BCC5.5. Once we finish our...
Corwin, I was wondering if you guys had given anymore thought to making it easier to support more datatypes, maybe through a lookup map that can be used during...
I have not really thought about it that much. One possibility would be to create a class that BoundIO would inherit from that would consolidate all the...
In a couple of your header files you have the following lines: #ifdef _MSC_VER #include <windows.h> #endif Would you consider switching it over to the...
Corwin, I like were you are going, but I have a suggestion that might be one better. Consider the following code snippet (I'll explain after). Please bear in...
In the latest releases we've actually changed this a little bit. Now this reads: #ifdef WIN32 #include <windows.h> #endif The two compilers that care about...
I like the idea of a mapping very much as I think this could make things a lot easier. For us to code this would be fairly hard to do, though. Basically it...
I've now found that you are right. By using the ODBC subset one don't have to use coalese(), nvl() etc. What is left though is the types and the creation of...
Tim TerlegÄrd
timte878@...
Feb 1, 2003 8:13 pm
495
I would like to ask (if available) for a dtl roadmap. What features are planned next? Is encapsulating the odbc access layer to enable other db access layers...
Just look at the help which comes with the Oracle ODBC driver to find out the type mappings. For example: "For programmers, the noteworthy part of the...
... The wiki is still empty, there was a discussion in december on the boost mailinglist and they will use the wiki in future to discuss reflection design...
I've gone ahead and put a new release out on the website. The release notes are as below, plus I have added information to the FAQ regarding the roadmap and...
Hi, I would like to have some kind of proxy interface in DTL. Any plans for that? Any ideas where I can look for ideas for that in case not. Regards, Lars...
Corwin, A) Something does let me keep some minimal part of the objects / rows in memory. On demand I want the rest to be loaded from the database. E.g. let's...
So that status of DTL is that is not multi thread safe now right? I will have a look at the libs for you and test it for that over time. Will post my changes...
The status is that I tried to make it "thread friendly" when we were writing the library by e.g. avoiding static variables, trying not to have globals or ...
Hi, I have problems with DynamicDBView and primary keys. When I try to use a DynamicDBView to get the contents of a table with a primary key I get an extra...
Hmmm.... looks like we have a bug here. Were are supposed to have a check so that key fields don't show up twice, but on inspection our check may be broken. ...