Released version 3.5 today! Major new feature is that we finally have a random access container that can support scrollable/random record access as per the C++...
One other nice feature I forgot to mention. We have also upgraded the build/make files so that they can handle MSVC 6.0. This makes life a lot easier than...
Stan, Thanks for reporting this, along with the workaround. I'm not really sure what we should do library-wise since I really think gcc ought to define...
OK, after more research, here is the correct fix for this. When you run "configure" for unixODBC it correctly identifies that gcc supports "long long" and sets...
Actually I think the problem below is an issue of setting the correct severity level in raiserror. I think you need to use a severity level of 20 or higher to...
Hiya, I'm a newcomer to DTL, but have found the library to be pretty useful so far. Is it possible to get the exact SQL that was executed for a query? It ...
... Actually with a couple hours of work one could fairly easily add a line or two to print the paramters used by the query. It would involve: A. Writing a...
Hiya Corwin, Thanks much for your reply and helpful comments. Do the parameter substitutions happen before the query hits ODBC, or afterward? [I would assume...
Well, actually, the parameter substitutions happen somwhere inside ODBC. The way it works is that in ODBC you setup a query with parameters indicated by...
We've been doing further internal tests with the DTL 3.5 release and it turns out that in the 3.5 release our regression tests failed to catch a serious bug...
Version 3.5.1; Released May 19, 2003 ***Bugfixes*** Fixed bug introduced in release 3.5 that broke bulk_fetch for dates. This also affected IndexDBViews which...
Hi, i try to read records from an access-database with the following struct and BCA: struct controler{ void Dump(); int id; int port; bool aktiv; bool l[64]; ...
The code here looks OK. I don't know why it would crash. We have code like this for some of our BCAs where we read numbered columns so it should be fine. If...
Hi, First off, my compliments on the great work and making it available for all. Hats off. I just downloaded the library and wanted to try a few things before...
... That's very strange. We've tested with .NET and Oracle 9i and not seen this. If it is really dying inside SQLDriverConnect then this could be some access...
Oh, and one more thing on this. If you are using Oracle 9i be darned sure that your client machine is using the Oracle 9 version of SQL*NET and ODBC drivers. ...
If anybody cares, the resolution on this was in two parts. 1. MDAC versions prior to MDAC 2.7 sp1 may return an incorrect status code of SQL_SUCCESS_WITH_INFO...
Hello, I have gone silly trying to figure this out. What I want to do is print out only the column names in the databases. Now, I used the example in "When...
The problem here is that the default DynamicDBView uses a mode called AutoKey to try to identify a primary key on the table and automatically add it to the...
Actually I partly take back what I said earlier. Re-examining the code in dtl 3.5.1 bind_basics.cpp line 620 it does look like we correctly only put columns...
Thanks Corwin, I really appreciate your time. After some more hitting, i was able to get it working. Here is what it boils down to. Not so big.... but little...
... Well, it wasn't REALLY old, but I should definitely have posted the version that I had. I was using 3.4.2. I had thought that this was so elementary that...
Please disregard my last message. I obviously did not RTFM enough as I found some more examples later on with DynamicIndexedDBView<>. ... From: Wendt, Paul ...
... Well, let me say that your modification helps me immensely. Now I don't have to figure out DynamicIndexedDBView :) Thank you very much for your rapid,...
OK. SDO_GEOMETRY is like a proprietary data type to oracle to handle spatial data. I don't know much about it, but it is not a standard data type that ODBC ...
That sounds good... Let me read through the posts and see if i can do the necessary changes for the new type[s]. One more before i close... If i have to run a...
... The easiest way would likely be just to use a regular DBView with a where clause. For example string dummy; DBView<string> view( "cust", BCA(dummy,...
Does DTL 3.5 support unicode? I get compile errors in the DTL3.5 similar to these: "cannot convert from 'const TCHAR *' to 'const std::basic_string" in VS.net...