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 your group to be featured on the Yahoo! Groups website? 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 1090 - 1119 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1090
Hi Corwin, CJ> Probably what you want is RandomDBView from the library. CJ> This provides a random access iterator that you can position wherever CJ> you want...
Artem Bozhenov
redart_98
Offline Send Email
Sep 1, 2004
2:41 pm
1091
... Oops. I will change that. ... These are really meant to be internal members used by the class so we did not document them. Instead, for the users we just...
Corwin Joy
corwinjoy
Offline Send Email
Sep 1, 2004
3:41 pm
1092
Hi Corwin, ... CJ> These are really meant to be internal members used by the class CJ> so we did not document them. Instead, for the users we just provide CJ>...
Artem Bozhenov
redart_98
Offline Send Email
Sep 1, 2004
4:22 pm
1093
... OK. I should add some more description on this. ... Hmm... I didn't think this needed explanation, but maybe it does / some internals description is...
Corwin Joy
corwinjoy
Offline Send Email
Sep 1, 2004
6:07 pm
1094
There is also some more explanation about the different cursor types and how we designed the iterators in Designing an STL iterator abstraction for ODBC...
Corwin Joy
corwinjoy
Offline Send Email
Sep 1, 2004
6:13 pm
1095
Hello Corwin, CJ> There is also some more explanation about the different cursor types CJ> and how we designed the iterators in CJ> Designing an STL iterator...
Artem Bozhenov
redart_98
Offline Send Email
Sep 1, 2004
6:20 pm
1096
Hi We have a complex multithreaded server product that uses DTL to acess SQL Server databases. We have been getting access violation exceptions from various...
ssn77
Offline Send Email
Sep 2, 2004
7:40 pm
1097
Sathya, I'm not sure what could be causing this. Can you send a small example program to reproduce this? Short of that, you will likely need at least to...
Corwin Joy
corwinjoy
Offline Send Email
Sep 2, 2004
9:38 pm
1098
Hi Corwin, Now i now exactly where this function is hanging. It hangs at the folloing statemnt. print_it++; // force the statement to execute i think...
nitin_garg_2000
Offline Send Email
Sep 3, 2004
6:08 am
1099
Nitin, Can you send me a small example project that replicates the problem? I know you sent a small piece of example code but it would help me to have a...
Corwin Joy
corwinjoy
Offline Send Email
Sep 3, 2004
6:22 am
1100
Hi Corwin, Here are 2 problems with RandomDBView 1. If I have an empty table on MS SQL, it works somehow incorrect. I have following code: ...
Artem Bozhenov
redart_98
Offline Send Email
Sep 3, 2004
4:46 pm
1101
Hi, Corwin Here are some other facts. On empty tables in MS SQL and on all tables in MySql, SQLGetStmtAttr fails with following data in SQLGetDiagRec: ...
Artem Bozhenov
redart_98
Offline Send Email
Sep 3, 2004
5:04 pm
1102
Hello again. The problem with MySql will arouse when total amount of records in table is lower than buffer_size in DB_select_iterator. If the table is big...
Artem Bozhenov
redart_98
Offline Send Email
Sep 3, 2004
5:21 pm
1103
Artem, Here is an initial fix for your review. I will try to make a release of these changes later next week. CJ...
Corwin Joy
corwinjoy
Offline Send Email
Sep 3, 2004
11:35 pm
1104
... Since ... might ... We did not had problems with multithreading issues until our customer have hoisted our product on a multiprocessor machine. When I have...
mkochetkov
Offline Send Email
Sep 4, 2004
3:37 pm
1105
Michael, Thanks for the comments. One thing I just wanted to note: ... Someone else pointed this problem out as well a few weeks ago. What we have done in the...
Corwin Joy
corwinjoy
Offline Send Email
Sep 4, 2004
5:26 pm
1106
... is created ... variable ... allocating the ... to ... in ... objects ... to this. I could hardly believe I share the DTL objects the dangerous way. All of...
mkochetkov
Offline Send Email
Sep 4, 2004
6:27 pm
1107
[...] ... 4. I have just found the material for point four (VC 6.0-related): http://support.microsoft.com/default.aspx?scid=kb;en-us;813810 For a long time I...
mkochetkov
Offline Send Email
Sep 4, 2004
7:41 pm
1108
... Michael, Thanks for the interesting link. I will definitely need to update the multi-threading docs. Also, are you willing to share the locking code that...
Corwin Joy
corwinjoy
Offline Send Email
Sep 5, 2004
2:21 am
1109
Hi Corwin, CJ> Here is an initial fix for your review. I will try to make a release of CJ> these changes later next week. Thank you, fix works for MS SQL. To...
Artem Bozhenov
redart_98
Offline Send Email
Sep 6, 2004
11:27 am
1110
... to ... No problem. I have not patched the DTL code but my own one looks like this: class MReference { long count_; // not implemented MReference(const...
mkochetkov
Offline Send Email
Sep 6, 2004
11:30 am
1111
At 06:26 AM 9/6/2004, you wrote: >Hi Corwin, > >CJ> Here is an initial fix for your review. I will try to make a release of >CJ> these changes later next...
Corwin Joy
corwinjoy
Offline Send Email
Sep 6, 2004
7:52 pm
1112
... I take that (somewhat) back. Running tests MySQL 3.51 driver seems to be OK on the bulk fetched but does not do so well on the bulk inserts. In theory the...
Corwin Joy
corwinjoy
Offline Send Email
Sep 6, 2004
7:59 pm
1113
Hello Corwin, CJ> I take that (somewhat) back. Running tests MySQL 3.51 driver seems to CJ> be OK on the bulk fetched but does not do so well on the bulk...
Artem Bozhenov
redart_98
Offline Send Email
Sep 7, 2004
2:01 pm
1114
... I dunno. They may be following the letter of the law here, but that then makes it difficult if you want to grab a table that has < buffer_size records. ...
Corwin Joy
corwinjoy
Offline Send Email
Sep 7, 2004
2:43 pm
1115
Hi! If you replace status = stmt.FetchScroll(SQL_FETCH_LAST, 0); with status = stmt.FetchScroll(SQL_FETCH_ABSOLUTE, -((pdata_end - pdata_begin) / row_size)); ...
Artem Bozhenov
redart_98
Offline Send Email
Sep 7, 2004
2:50 pm
1116
Thanks Artem. I have made this change but restricted it to the case of MySQL since it turns out that Oracle (and possibly other drivers?) don't support the...
Corwin Joy
corwinjoy
Offline Send Email
Sep 7, 2004
5:23 pm
1117
Good evening, Corwin Thanks. Where can I get this changes? BTW, in my dtl.hhp there is 1 missing file - ErrorHandler.htm, that was introduced not long ago. So...
Artem Bozhenov
redart_98
Offline Send Email
Sep 7, 2004
6:12 pm
1118
Corwin, If I have to make these changes myself, is it enough if I just modify the following classes to include the Interlocked functions 1. CountedPtr & its...
Venkat
msvenx
Offline Send Email
Sep 9, 2004
10:08 pm
1119
... If you are just copying objects across threads then you will definitely need to add interlocks to CountedPtr and MemPtr since some objects hold a few...
Corwin Joy
corwinjoy
Offline Send Email
Sep 10, 2004
1:45 am
Messages 1090 - 1119 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