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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 1136 - 1165 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1136
Hi, I can't seem to get Example 2 to work http://dtemplatelib.sourceforge.net/RandomDBView.htm I added these lines to the top: #include <dtl/DTL.h> #include...
Paul
elegant_dice
Offline Send Email
Oct 1, 2004
7:31 am
1137
I'm full of questions today, apologies On http://dtemplatelib.sourceforge.net/variant_field.htm I saw this line: s = (string) r["int"]; I tried to do that, I...
Paul
elegant_dice
Offline Send Email
Oct 1, 2004
8:30 am
1138
Hello Corwin, Thank you for your advice. I wrote the following code, can you take a moment and look at it to say whether it is correct? Is it necessary to call...
Artem Bozhenov
redart_98
Offline Send Email
Oct 1, 2004
4:30 pm
1139
Hi Corwin, Just to let you know, I make heavy use of IndexedDBView on one of my projects. The the database that I connect to has minimal SQL functionality and...
gregdo2000
Offline Send Email
Oct 1, 2004
6:32 pm
1140
... Yes, it looks fine. ... Yes, you will want to call BindAsBase to initialize the base size of the row you are working with. ... erase is not safe for this...
Corwin Joy
corwinjoy
Offline Send Email
Oct 1, 2004
6:39 pm
1141
Thanks for pointing this out. It does indeed look like this example is out of date relative to the latest release. You can find an updated version of this ...
Corwin Joy
corwinjoy
Offline Send Email
Oct 1, 2004
6:48 pm
1142
This is actually an example taken from tests/Example.cpp. Compilers other than gcc will allow this cast, for some reason gcc finds it ambiguous. We had to...
Corwin Joy
corwinjoy
Offline Send Email
Oct 1, 2004
6:54 pm
1143
Hello, Corwin. I've decided to switch to select_update_iterator. I'm trying to compile this code: DBView<ezobject,extIdParams>...
Artem Bozhenov
redart_98
Offline Send Email
Oct 4, 2004
2:23 pm
1144
Hi, I am running DTL under FreeBSD environment and working well with DBView. Now we have a requirement where we need to read the data from the DB dynamically....
Raghunadha R Kotha
raghu_kotha
Offline Send Email
Oct 4, 2004
6:57 pm
1145
Artem, The reason why it is not allowing this is that the select_update iterator does not let you specify parameters like this. Instead, it builds the update...
Corwin Joy
corwinjoy
Offline Send Email
Oct 4, 2004
8:48 pm
1146
I don't see anything obviously wrong with what you are doing but it would help to have some more details on how you have set things up (see previous...
Corwin Joy
corwinjoy
Offline Send Email
Oct 4, 2004
9:07 pm
1147
Hi Corwin, Thanks for the quick reply. Please see my in-line comments. ... [raghu] No, we are not using separate connection per thread. We have connection...
Raghunadha R Kotha
raghu_kotha
Offline Send Email
Oct 4, 2004
11:53 pm
1148
... O.K. That may cause problems depending on your driver. For example Microsoft SQL Server ODBC drivers do not perform concurrent operations on a single...
Corwin Joy
corwinjoy
Offline Send Email
Oct 5, 2004
12:10 am
1149
Version 3.6.6; Released October 5, 2004 ***Bugfixes*** Fixed bug in RandomDBView so that it will correctly handle empty tables. Switched calls from strtok to...
Corwin Joy
corwinjoy
Offline Send Email
Oct 5, 2004
4:37 am
1150
... iterator ... In fact, I'm trying to position the select_update_iterator on the row I need to read, modify and update. With select_iterator I could use ...
redart_98
Offline Send Email
Oct 5, 2004
3:06 pm
1151
Hi! I've downloaded new version and it refuses to compile complaining about #include "IndexedDBView.h" in DynaDBView.h. The file is missing in this release. Is...
Artem Bozhenov
redart_98
Offline Send Email
Oct 5, 2004
4:01 pm
1152
... <...snip...> ... Personally, this sounds to me like a quick job for a sql statement (or possibly sql_iterator if you do this a lot). Here is a dirty...
Corwin Joy
corwinjoy
Offline Send Email
Oct 5, 2004
5:51 pm
1153
... Whoops! I goofed there. I have updated the release and re-release it! Thanks for pointing this out. Corwin...
Corwin Joy
corwinjoy
Offline Send Email
Oct 5, 2004
5:59 pm
1154
Hi Corwin, CJ> Personally, this sounds to me like a quick job for a sql statement CJ> (or possibly sql_iterator if you do this a lot). CJ> Here is a dirty...
Artem Bozhenov
redart_98
Offline Send Email
Oct 5, 2004
6:21 pm
1155
Hi, Sometime I would like to omit the returned result. in case 1) just check whether a select query returns no rows 2) read the first row and omit the rest how...
wolflittle2001
Offline Send Email
Oct 7, 2004
4:34 pm
1156
... This is not quite correct. I assume the above are member functions of a class? In this case you also need a DynamicDBView<> member to save the value of ...
Corwin Joy
corwinjoy
Offline Send Email
Oct 7, 2004
9:29 pm
1157
thanks for your reply, please read inline ... of a class? Yes, I was not clear, they all belongs to a class. and I only call those get*Row, is*Row, omit*Row...
wolflittle2001
Offline Send Email
Oct 8, 2004
2:18 am
1158
Hi, Am I the only one who gets ambiguous overloads when i try: tcstring<50> before; string good = before; string bad(before); // ambiguous string bad2; bad2 =...
Paul
elegant_dice
Offline Send Email
Oct 8, 2004
2:33 am
1159
1. What compiler/version are you using? 2. What messages are you getting?...
Corwin Joy
corwinjoy
Offline Send Email
Oct 8, 2004
2:42 am
1160
sorry: gcc (GCC) 3.3.4 (Debian 1:3.3.4-13) 1: tcstring<50> before; 2: string after(before); In function `whatever': test.cpp:2: error: call of...
Paul
elegant_dice
Offline Send Email
Oct 8, 2004
2:49 am
1161
... The ambiguity is caused by the operator tstring overload in the tcstring<N> template. Just remove this overload in array_string.h:210 and 361 since it is...
Corwin Joy
corwinjoy
Offline Send Email
Oct 8, 2004
3:57 am
1162
Yup, that's a typo. Thanks for pointing this out. Corwin At 10:48 AM 10/8/2004, you wrote: Hello. I just want to point to a small bug in DTL documentation. On...
Corwin Joy
corwinjoy
Offline Send Email
Oct 8, 2004
10:45 pm
1163
$$$Provide SAP install CD and SAP course ! Start u SAP consultant study from here!!!!! if u want to know detail,Pls kindly email to erpbar@... or...
SAPTraining
jackson_rolin
Offline Send Email
Oct 10, 2004
7:54 pm
1164
@@@Provide Oracle11i install CD and Oracle 11i course ! Start u Oracle Erp consultant carrer from here!!!!! Oracle 11i 10.7.5 For Nt install Disk 23CD Oracle...
SAPTraining
jackson_rolin
Offline Send Email
Oct 12, 2004
11:22 am
1165
Hi I get this strange error: /usr/local/include/dtl/DBView.h: In destructor `dtl::DBView<DataObj, ParamObj>::~DBView() [with DataObj = myobj, ParamObj = ...
Paul
elegant_dice
Offline Send Email
Oct 13, 2004
12:08 am
Messages 1136 - 1165 of 2479   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