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 1747 - 1777 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1747
Hi All, I've found a nasty crash bug in the cleanup of the DTL on program termination. This is the sample program: #include "DBConnection.h" int main() { ...
Paul
elegant_dice
Offline Send Email
Oct 3, 2005
7:11 am
1748
I've seen something like this reported before in the case of DLLs: http://groups.yahoo.com/group/DatabaseTemplateLibrary/message/1200 the fact that it only...
Corwin Joy
corwinjoy
Offline Send Email
Oct 4, 2005
1:56 am
1749
I haven't looked into this, but I wouldn't be suprised if the problem was just that the ODBC libs/drivers are already destructed. Clearly we should not be...
Geoffrey Gowan
ggowan_2000
Offline Send Email
Oct 4, 2005
5:41 pm
1750
Another approach that maybe we could take would be to change the default connection to be stored as a CountedPtr<DBConnection> and see if those destructors get...
Gradman, Michael
cppguru777
Offline Send Email
Oct 4, 2005
5:51 pm
1751
I think the problem basically comes down to the ambuguity of global destruction order. Essentially the default connection is a global object. Sometimes, the...
cjoy@...
corwinjoy
Offline Send Email
Oct 4, 2005
9:41 pm
1752
Hello DatabaseTemplateLibrary I've found a bug when working with RandomDBView with MS SQL Server 2000. If you call end() function of an iterator on this class,...
Artem Bozhenov
redart_98
Offline Send Email
Oct 6, 2005
5:27 pm
1753
Hello DatabaseTemplateLibrary The fix I've posted is not complete. Now in the empty tables view.begin()!=view.end(), since in ...
Artem Bozhenov
redart_98
Offline Send Email
Oct 6, 2005
7:16 pm
1754
... Note, this doesn't just happen on multiprocessor systems, the crappy Win2k single-cpu box also exhibits the problem ... I agree with the other emails, I...
Paul
elegant_dice
Offline Send Email
Oct 10, 2005
3:08 am
1755
Hi, My select statement is failing and it seems to be because GetQuoteChar is returning ` instread of ' for an odbc connection to an MS Access (2003) Database....
Kevin Morrison
morrisok
Online Now Send Email
Oct 10, 2005
8:14 am
1756
I also discovered that you need to release the environment! of course, this is only required on some Windows machines (in this case, a 2 year old win2k single...
Paul
elegant_dice
Offline Send Email
Oct 10, 2005
11:53 am
1757
If you look in the function DBConnection::ComputeDBType, the place where we compute the quote character used by that database type it is coded to be general: ...
Corwin Joy
corwinjoy
Offline Send Email
Oct 11, 2005
2:16 am
1758
Hi! First of all, thanks for this superb idea and really neat looking libary! I can't wait to try it out, but I'm having a little problem. When trying to...
chardan965
Offline Send Email
Oct 13, 2005
5:42 pm
1759
Jesse, You have to include the header "table.h" before you use the DTL_TABLE macros. The reason for this is that macros are evil (but in this case...
cjoy@...
corwinjoy
Offline Send Email
Oct 13, 2005
8:45 pm
1760
... Hi Corwin, ... Ah! I see. Thanks-- maybe an idea for the next time you update the example documentation? :> ... As long as they are doing evil in the...
chardan965
Offline Send Email
Oct 13, 2005
10:26 pm
1761
Hello. I'm still new in using the DTL in connection to database and I don't know and didn't understand how to make the connection between database and my C++ ...
Hadia Raafat
tooshy206
Offline Send Email
Oct 14, 2005
5:24 pm
1762
Hadia, Take a look at our introduction document here: http://dtemplatelib.sourceforge.net/dtl_introduction.htm The very first example there shows a complete...
cjoy@...
corwinjoy
Offline Send Email
Oct 14, 2005
7:33 pm
1763
Thanx Corwin But I tried your first example many times and it didn't work, as it can't c the dtl.h file even though I added it as u specified in the...
Hadia Raafat
tooshy206
Offline Send Email
Oct 14, 2005
8:41 pm
1765
Hello, dear corwin. Please explain explicit use DefaultBCA<> specializations (with the BCAWrap class which copies DefaultBCA into itself) instead of Direct ...
onelse
Offline Send Email
Oct 15, 2005
10:38 am
1766
Please I need a reply. Why this error appear to me and how can I solve it. "fatal error C1083: Cannot open include file: 'DTL.h': No such file or directory" I...
Hadia Raafat
tooshy206
Offline Send Email
Oct 15, 2005
2:59 pm
1767
Please I need a reply. Why this error appear to me and how can I solve it. "fatal error C1083: Cannot open include file: 'DTL.h': No such file or directory" I...
Hadia Raafat
tooshy206
Offline Send Email
Oct 15, 2005
2:59 pm
1768
Corwinjoy, hello again !!! Here is another question - can i use dtl without RTTI enabled ? thank you....
onelse
Offline Send Email
Oct 15, 2005
6:22 pm
1769
The idea behind the DefaultBCA was to allow you to cleanly specify the binding definitions for a class 1. Without being intrusive - i.e. the binding method...
Corwin Joy
corwinjoy
Offline Send Email
Oct 15, 2005
7:03 pm
1770
Yes, but only barely. There is really only one place that uses RTTI in BoundIO line 378 template<class memberType> void GenericBindPrimitive(memberType ...
Corwin Joy
corwinjoy
Offline Send Email
Oct 15, 2005
7:19 pm
1771
I'm really sorry for annoying, but I thought you are a site for answering all beginners and professionals and you are now neglecting my questions to you.I...
Hadia Raafat
tooshy206
Offline Send Email
Oct 16, 2005
12:44 am
1772
Hadia, You are getting the error "fatal error C1083: Cannot open include file: 'DTL.h': No such file or directory" because you have not told the compiler where...
Corwin Joy
corwinjoy
Offline Send Email
Oct 16, 2005
2:07 am
1773 Corwin Joy
corwinjoy
Offline Send Email
Oct 16, 2005
5:06 am
1774
Hello Corwin ! Thank you for the competent and complete answer. Please, confirm I would just comment all RTTI use in your BoundIO class. It looks to be stable...
onelse
Offline Send Email
Oct 16, 2005
4:25 pm
1775
Actually, it's not quite that easy. To eliminate RTTI you would need to do two things: 1. Chage ETI_Map::build to just use a pre-defined set of names rather...
Corwin Joy
corwinjoy
Offline Send Email
Oct 16, 2005
5:19 pm
1776
Hello! I have a little question about RandomDBView. In my program user wants to read say records from 300 to 350 from the table, but in fact the table contains...
Artem Bozhenov
redart_98
Offline Send Email
Oct 18, 2005
6:02 pm
1777
Hi Artem, Let's see if I can address your questions: 1. Regarding you last question on what is happening with the off by one error in the RandomDBView, this...
Corwin Joy
corwinjoy
Offline Send Email
Oct 19, 2005
1:07 am
Messages 1747 - 1777 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