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 2001 - 2030 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2001
The definition is there in variant_row.cpp dtl_variant_t::operator ODBCINT64 () const { ODBCINT64 tmp(0); // gcc 3.2 workaround "long long int()" fails below ...
Corwin Joy
corwinjoy
Offline Send Email
May 1, 2006
3:09 pm
2002
You are talking about dtl_variant_t::operator ODBCINT64(), but I was talking about variant_field::operator ODBCINT64(). Not the same thing... Also, after I...
ronen_yuval
Offline Send Email
May 2, 2006
7:30 am
2003
Generics, templates, meta-programming are all cousins of code generators. Rodrigo...
Rodrigo Madera
rodrigo.madera
Offline Send Email
May 2, 2006
12:31 pm
2004
This four step guide will give you the foundation you always wanted. Learning the basics in handling stocks. This guide will help anyone, interested in getting...
datt_abases_gpss_168@...
datt_abases_...
Offline Send Email
May 5, 2006
4:08 pm
2005
This four step guide will give you the foundation you always wanted. Learning the basics in handling stocks. This guide will help anyone, interested in getting...
datt_abases_gpss_168@...
datt_abases_...
Offline Send Email
May 13, 2006
5:49 am
2006
Hi. While you check out the missing ODBC64 functions (or at least I hope so), I found another problem. The following code doesn't work: class VariantRowPrint {...
ronen_yuval
Offline Send Email
May 14, 2006
1:00 pm
2007
hrm this is a bad way of finding out this bug. objects that can't be copied should be declared with private copy-constructors/assignments... or be made...
Paul
elegant_dice
Online Now Send Email
May 15, 2006
1:42 am
2008
... Yes, and iterators specifically must be copyable. This is one of the fundamentals of the standard library, and an assumption that all algorithms rely on. ...
ronen_yuval
Offline Send Email
May 15, 2006
7:32 am
2009
Ronen, Actually, I don't think this is a sql_iterator copy bug. Instead, your VariantRowPrint class takes a variant_row, wheras your for_each loop is called...
cjoy@...
corwinjoy
Offline Send Email
May 15, 2006
9:19 pm
2010
p.p.s. In the constructor for variant_row we actually put an explicit keyword on it so that the compiler should automatically complain if you try to do...
cjoy@...
corwinjoy
Offline Send Email
May 15, 2006
9:25 pm
2011
The constructor of variant_row isn't explicit. I've just looked at your code, and it just isn't. But anyway, there's no importance to this thing because I'm...
ronen_yuval
Offline Send Email
May 16, 2006
7:49 am
2012
... the ... take a ... std::for_each calls the functor with '*iter', not with 'iter', so there's a derefencing before the call. The derefencing returns a ...
ronen_yuval
Offline Send Email
May 16, 2006
7:53 am
2013
Hi all, Can you write subqueries using the DTL? E.g.: SELECT a FROM ( SELECT a, b FROM someTable WHERE a < 1000 ) WHERE a < b; The important part is the bit in...
Phil.Nash@...
pan_europe
Offline Send Email
May 18, 2006
7:53 am
2014
... b; Yes. Just use a sql_iterator for this. Corwin...
cjoy@...
corwinjoy
Offline Send Email
May 18, 2006
4:12 pm
2015
Ok, thanks Corwin, I'll look a bit more closely at the use of sql_iterator. Thanks and regards, [)o IhIL.. ... For more information about Barclays Capital,...
Phil.Nash@...
pan_europe
Offline Send Email
May 18, 2006
4:27 pm
2016
... I have been able to do this now and it works - thanks again. I have to say that the documentation in that area is quite weak: a bit vague, and a number of...
Phil.Nash@...
pan_europe
Offline Send Email
May 19, 2006
3:14 pm
2017
Phil, These are good points you make about the sql_iterator documentation. I agree that it needs some work since we seem to get quite a few questions about it....
cjoy@...
corwinjoy
Offline Send Email
May 19, 2006
7:14 pm
2018
This four step guide will give you the foundation you always wanted. Learning the basics in handling stocks. This guide will help anyone, interested in getting...
datt_abases_gpss_168@...
datt_abases_...
Offline Send Email
May 20, 2006
7:34 am
2019
Hi. I haven't heard from you about the missing ODBCINT64 functions, and about the must-not-be-copied sql_iterator. Was I able to convince you of my point, or...
ronen_yuval
Offline Send Email
May 21, 2006
7:50 pm
2020
Hi Yuval, For the ODBCINT64 function I wasn't exactly clear which member of which class you felt was missing since we have a number of ODBCINT64 member ...
Corwin Joy
corwinjoy
Offline Send Email
May 22, 2006
4:43 pm
2021
... I think I have specified those functions before, but if I wasn't clear enough, I'll galdly specify them again. They are: variant_field::operator...
ronen_yuval
Offline Send Email
May 22, 2006
8:12 pm
2022
Hi. I noticed that when I use DynamicDBView<> to select from a table/view, DTL adds the result of SQLSpecialColumns() to my list of fetched fields. What is the...
ronen_yuval
Offline Send Email
May 23, 2006
8:35 pm
2023
DynamicDBView always tries to add unique primary key column(s) to the query so that any records you want to update or delete can be precisely identified. If...
Corwin Joy
corwinjoy
Offline Send Email
May 23, 2006
11:37 pm
2024
I've looked ay the code/documentation and it seems that all I have to do is call myDynamicDBView.SetAutoKey(""); and this feature will be disabled. Am I right?...
ronen_yuval
Offline Send Email
May 24, 2006
6:30 am
2025
No, I'm not right. I just tried it, and it doesn't work. So what exactly do I have to do? ... to ... table/view,...
ronen_yuval
Offline Send Email
May 24, 2006
11:36 am
2026
Ronen, In order to suppress automatic key lookup you need to set the key mode when you construct the DBView. You should set the keyMode to USE_PK_ONLY or...
cjoy@...
corwinjoy
Offline Send Email
May 24, 2006
7:09 pm
2027
This four step guide will give you the foundation you always wanted. Learning the basics in handling stocks. This guide will help anyone, interested in getting...
datt_abases_gpss_168@...
datt_abases_...
Offline Send Email
May 27, 2006
12:09 pm
2028
Hi. I've followed the example titles "Example: Reading a set of records from an Oracle stored procedure." found in the file dtl/docs/sql_iterator.htm to call...
ronen_yuval
Offline Send Email
Jun 4, 2006
8:34 pm
2029
Ronen, You are indeed doing something wrong. sql_iterator will use prepare/execute - but it can't prepare if you recreate the iterator every time! You want ...
Corwin Joy
corwinjoy
Offline Send Email
Jun 5, 2006
6:38 pm
2030
Another problem I encountered: I have the following stored procedure: TYPE result_set IS REF CURSOR; PROCEDURE my_proc_out (a_name NUMBER, a_value VARCHAR,...
ronen_yuval
Offline Send Email
Jun 6, 2006
9:06 am
Messages 2001 - 2030 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