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...
Show off your group to the world. Share a photo of your group with us.

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 583 - 612 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
583
Released version 3.5 today! Major new feature is that we finally have a random access container that can support scrollable/random record access as per the C++...
Corwin Joy
corwinjoy
Offline Send Email
May 3, 2003
4:54 am
584
One other nice feature I forgot to mention. We have also upgraded the build/make files so that they can handle MSVC 6.0. This makes life a lot easier than...
Corwin Joy
corwinjoy
Offline Send Email
May 3, 2003
6:20 am
585
Stan, Thanks for reporting this, along with the workaround. I'm not really sure what we should do library-wise since I really think gcc ought to define...
Corwin Joy
corwinjoy
Offline Send Email
May 12, 2003
2:49 am
586
OK, after more research, here is the correct fix for this. When you run "configure" for unixODBC it correctly identifies that gcc supports "long long" and sets...
Corwin Joy
corwinjoy
Offline Send Email
May 12, 2003
4:11 am
587
Actually I think the problem below is an issue of setting the correct severity level in raiserror. I think you need to use a severity level of 20 or higher to...
Corwin Joy
corwinjoy
Offline Send Email
May 12, 2003
8:33 pm
588
Hiya, I'm a newcomer to DTL, but have found the library to be pretty useful so far. Is it possible to get the exact SQL that was executed for a query? It ...
richard_fanta
Offline Send Email
May 14, 2003
11:39 pm
589
... FROM: richard.fanta@... DATE: Wed, 14 May 2003 19:53:28 -0000 SUBJECT: How can I get the exact SQL that was executed? Hiya, I'm a newcomer to...
Corwin Joy
corwinjoy
Offline Send Email
May 14, 2003
11:50 pm
590
... Actually with a couple hours of work one could fairly easily add a line or two to print the paramters used by the query. It would involve: A. Writing a...
Corwin Joy
corwinjoy
Offline Send Email
May 15, 2003
3:01 am
591
Hiya Corwin, Thanks much for your reply and helpful comments. Do the parameter substitutions happen before the query hits ODBC, or afterward? [I would assume...
richard_fanta
Offline Send Email
May 15, 2003
9:10 pm
592
Well, actually, the parameter substitutions happen somwhere inside ODBC. The way it works is that in ODBC you setup a query with parameters indicated by...
Corwin Joy
corwinjoy
Offline Send Email
May 15, 2003
10:12 pm
593
We've been doing further internal tests with the DTL 3.5 release and it turns out that in the 3.5 release our regression tests failed to catch a serious bug...
Corwin Joy
corwinjoy
Offline Send Email
May 16, 2003
9:56 pm
594
Version 3.5.1; Released May 19, 2003 ***Bugfixes*** Fixed bug introduced in release 3.5 that broke bulk_fetch for dates. This also affected IndexDBViews which...
Corwin Joy
corwinjoy
Offline Send Email
May 19, 2003
11:04 pm
595
Hi, i try to read records from an access-database with the following struct and BCA: struct controler{ void Dump(); int id; int port; bool aktiv; bool l[64]; ...
pixelzauber
Offline Send Email
May 21, 2003
12:00 am
596
The code here looks OK. I don't know why it would crash. We have code like this for some of our BCAs where we read numbered columns so it should be fine. If...
Corwin Joy
corwinjoy
Offline Send Email
May 21, 2003
12:11 am
597
Hi, First off, my compliments on the great work and making it available for all. Hats off. I just downloaded the library and wanted to try a few things before...
letters2vc
Offline Send Email
May 22, 2003
1:49 am
598
... That's very strange. We've tested with .NET and Oracle 9i and not seen this. If it is really dying inside SQLDriverConnect then this could be some access...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2003
1:59 am
599
Oh, and one more thing on this. If you are using Oracle 9i be darned sure that your client machine is using the Oracle 9 version of SQL*NET and ODBC drivers. ...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2003
2:04 am
600
If anybody cares, the resolution on this was in two parts. 1. MDAC versions prior to MDAC 2.7 sp1 may return an incorrect status code of SQL_SUCCESS_WITH_INFO...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2003
2:46 am
601
Hello, I have gone silly trying to figure this out. What I want to do is print out only the column names in the databases. Now, I used the example in "When...
Wendt, Paul
paul_robert_...
Offline Send Email
May 22, 2003
3:31 pm
602
The problem here is that the default DynamicDBView uses a mode called AutoKey to try to identify a primary key on the table and automatically add it to the...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2003
3:52 pm
603
Actually I partly take back what I said earlier. Re-examining the code in dtl 3.5.1 bind_basics.cpp line 620 it does look like we correctly only put columns...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2003
4:26 pm
604
Thanks Corwin, I really appreciate your time. After some more hitting, i was able to get it working. Here is what it boils down to. Not so big.... but little...
letters2vc
Offline Send Email
May 22, 2003
5:58 pm
605
... Well, it wasn't REALLY old, but I should definitely have posted the version that I had. I was using 3.4.2. I had thought that this was so elementary that...
paul_robert_wendt
paul_robert_...
Offline Send Email
May 22, 2003
5:59 pm
606
Please disregard my last message. I obviously did not RTFM enough as I found some more examples later on with DynamicIndexedDBView<>. ... From: Wendt, Paul ...
Wendt, Paul
paul_robert_...
Offline Send Email
May 22, 2003
6:00 pm
607
... Well, let me say that your modification helps me immensely. Now I don't have to figure out DynamicIndexedDBView :) Thank you very much for your rapid,...
paul_robert_wendt
paul_robert_...
Offline Send Email
May 22, 2003
6:02 pm
608
OK. SDO_GEOMETRY is like a proprietary data type to oracle to handle spatial data. I don't know much about it, but it is not a standard data type that ODBC ...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2003
8:44 pm
609
That sounds good... Let me read through the posts and see if i can do the necessary changes for the new type[s]. One more before i close... If i have to run a...
letters2vc
Offline Send Email
May 23, 2003
6:33 pm
610
... The easiest way would likely be just to use a regular DBView with a where clause. For example string dummy; DBView<string> view( "cust", BCA(dummy,...
Corwin Joy
corwinjoy
Offline Send Email
May 24, 2003
2:57 am
611
Does DTL 3.5 support unicode? I get compile errors in the DTL3.5 similar to these: "cannot convert from 'const TCHAR *' to 'const std::basic_string" in VS.net...
jpatrick1962
Offline Send Email
May 30, 2003
8:40 pm
612
We do support UNICODE, see our tests project UNICODE configuration for an example. Basically, you must define both UNICODE and _UNICODE. Corwin...
Corwin Joy
corwinjoy
Offline Send Email
May 30, 2003
8:42 pm
Messages 583 - 612 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