Hi, I'm trying to bulk blob into my Oracle DB with DTL, and it crashes. I tried to wait additional 10 seconds until the bulk operation completes and it doesn't...
Noam, Your question was not clear to me because your example had a number of syntax errors in it so that it did not compile. Major points were 1. You did not...
Hi..I have a strange problem...i built dtl.lib on visula studio .net 2003 and i am able to run the example project bundled with dt.tar.z,,but when i am trying...
Can you be more specific about which piece of code from the documentation you are trying and what linker errors you are getting? I guess you have created your...
Hi, is there any concurrent connection example using one connection per thread? it seems that if I specify a connection other than the default connection, I...
Hello, Can anybody give me a tip on this DbStmt problem: I want to delete a number of rows from the database by executing a query via DbStmt. The query is...
Hmm. I am not sure what to tell you here. We have had a number of folks use DTL with Sybase with no problem. Maybe this is something specific that the Merant...
Correct me if I'm wrong, but I don't think it will work for my case: I wrote function with this prototype: int flush_table(string& table_name, string&...
Hi, This might also be not appropriate... but: heres how i do it in a more generic way. i dont use the dynamic classes, i like static types ;) NOTE: this...
Hi, I am new to the DTL library and I was trying to compile my first code. I added this line to the Link, Additional Directories in my Projects settings: ...
Take a look at your C++ build settings for the C++ run-time library. The error message means that you have built DTL.lib and your code with different C++...
Thank you very much, I found what you were talking about and it worked. But when I run my program I get this error: Exception type: DBException Method:...
Great a typeo... I am so sorry... Got passed that and now get this: Exception type: DBException Method: DescColsOrParams() Error Message: Unable to get number...
The program is looking for an ODBC data source named "db". Go to the Control Panel->Administrative Tools->ODBC Data Sources. Look under the tabs called "User...
You probably have a typo in a column or table name. Paste your sql statement (I assume this is a DynamicDBView) into a SQL server query window and run it....
... I suspect it is possible to do this - but I have not taken the time to find out. Instead, what we do regularly test is DTL versus cygwin. We don't really...
Thank you so much for you time. You were absouletly right like always! I thought that SQL Server 2000 wasn't case sensitive but you were right ! But there is...
you need to compile it with RTTI turned on. Run Time Type Identification. with g++, its -frtti from memory, and MSVC: it should be some sort of compile option...
It worked like a charm :) Thank you all for your help and time, I have no compiled and run my first DTL program and will probably have a blast learning how to...
Hello I've copied cygwin-.inc to mingw-.inc and modified common.sh from config directory, and successful built dtl using mingw/msys. Happy New Year, Janusz...
Janusz Piwowarski
jpiw@...
Dec 31, 2004 1:36 pm
1287
Excellent! That is good to know for the next person that wants to run DTL under mingwin. Thanks for letting us know, Corwin...
Thanks Janusz! I will add these changes for the next release. Corwin ... Tonya Harding Rejected Fantasy #3002. From the Tonya Harding official website: ...
* 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...