Search the web
Sign In
New User? Sign Up
DatabaseTemplateLibrary · The Database Template Library
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1261 - 1291 of 2478   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1261
Thanks Corwin. I have tried the Data Direct driver and it works. Noam....
d_navaro_work
Offline Send Email
Dec 1, 2004
8:40 am
1262
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...
d_navaro_work
Offline Send Email
Dec 5, 2004
5:35 pm
1263
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...
Corwin Joy
corwinjoy
Offline Send Email
Dec 9, 2004
9:43 pm
1264
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...
soleshunlr
Offline Send Email
Dec 11, 2004
8:13 pm
1265
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...
Corwin Joy
corwinjoy
Offline Send Email
Dec 11, 2004
10:15 pm
1266
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...
wolflittle2001
Offline Send Email
Dec 12, 2004
6:21 pm
1267
Just use the "named argument" syntax that lets you specify arguments by name. See the docs for details but it looks like this DynamicDBView::Args...
Corwin Joy
corwinjoy
Offline Send Email
Dec 12, 2004
8:39 pm
1268
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...
dragon_krome
Online Now Send Email
Dec 14, 2004
2:31 pm
1269
Take a look at DB_delete_iterator::ExecDelete(). What you want is something like this: rowsDeleted = this->stmt.RowCount();...
Corwin Joy
corwinjoy
Offline Send Email
Dec 15, 2004
1:59 am
1270
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...
Corwin Joy
corwinjoy
Offline Send Email
Dec 15, 2004
7:29 am
1271
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&...
dragon_krome
Online Now Send Email
Dec 15, 2004
9:49 am
1272
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...
Paul
elegant_dice
Online Now Send Email
Dec 15, 2004
11:13 am
1273
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: ...
Baldur Knutsson
baldurkn
Offline Send Email
Dec 29, 2004
2:44 pm
1274
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++...
Corwin Joy
corwinjoy
Offline Send Email
Dec 29, 2004
3:07 pm
1275
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:...
Baldur Knutsson
baldurkn
Offline Send Email
Dec 29, 2004
3:42 pm
1276
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...
Baldur Knutsson
baldurkn
Offline Send Email
Dec 29, 2004
4:02 pm
1277
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...
cjoy@...
corwinjoy
Offline Send Email
Dec 29, 2004
4:53 pm
1278
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....
cjoy@...
corwinjoy
Offline Send Email
Dec 29, 2004
5:03 pm
1279
... 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...
Corwin Joy
corwinjoy
Offline Send Email
Dec 30, 2004
5:42 am
1280
This is what I did... DynamicDBView<> view("starfsmenn", "*"); // Read all rows from the database and send to cout copy(view.begin(), view.end(),...
Baldur Knutsson
baldurkn
Offline Send Email
Dec 30, 2004
9:35 am
1281
Well, the error message says SQL Errors: (0) SQL Error! SQLSTATE = 42S02 Native err = 208 msg = [Microsoft][ODBC SQL Serv er Driver][SQL Server]Invalid object...
Corwin Joy
corwinjoy
Offline Send Email
Dec 30, 2004
3:04 pm
1283
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...
Baldur Knutsson
baldurkn
Offline Send Email
Dec 30, 2004
3:35 pm
1284
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...
Paul
elegant_dice
Online Now Send Email
Dec 30, 2004
3:55 pm
1285
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...
Baldur Knutsson
baldurkn
Offline Send Email
Dec 30, 2004
4:01 pm
1286
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@...
Send Email
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...
Corwin Joy
corwinjoy
Offline Send Email
Dec 31, 2004
9:14 pm
1288
Thanks Janusz! I will add these changes for the next release. Corwin ... Tonya Harding Rejected Fantasy #3002. From the Tonya Harding official website: ...
Corwin Joy
corwinjoy
Offline Send Email
Dec 31, 2004
9:30 pm
1289
* Version 3.6.7; Released January 1, 2005 * ***Bugfixes*** * Clean up casts and dummy parameters (Paul Harris). * Clean up header includes so that iterator...
Corwin Joy
corwinjoy
Offline Send Email
Jan 1, 2005
11:15 pm
1290
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++...
dragon_krome
Online Now Send Email
Jan 3, 2005
8:33 am
1291
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...
Corwin Joy
corwinjoy
Offline Send Email
Jan 3, 2005
2:06 pm
Messages 1261 - 1291 of 2478   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help