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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1941 - 1971 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1941
OS: Win2000 SP4 DB: Oracle 10.1 ODBC: Easysoft 3.0 DTL: 3.6.10 Compiler: VC 7.1 Hi. I'm running the following simple code: <code> DBConnection conn; ...
ronen_yuval
Offline Send Email
Apr 5, 2006
1:20 pm
1942
Ronen, It's hard to say without sitting down and tracing the code but: 1. Everything up to the call to GetBoundIOforColumn sounds fine do { rc =...
Corwin Joy
corwinjoy
Offline Send Email
Apr 5, 2006
9:42 pm
1943
... I tried it with the Oracle ODBC driver and the same code seems to work fine. Am I right to understand that any call to SQLParamData that returns...
ronen_yuval
Offline Send Email
Apr 6, 2006
11:57 am
1944
Yes. If SQLParamData returns SQL_NEED_DATA then it should also return a value in the second parameter (*ValuePtrPtr). See the docs here: ...
Corwin Joy
corwinjoy
Offline Send Email
Apr 6, 2006
2:58 pm
1945
I posted this question before, but I think I didn't described it clearly. I need to call a stored procedure like this: declare io_ErrCode number(12) := 0; ...
myajax95
Offline Send Email
Apr 6, 2006
11:54 pm
1946
Are you using SQLServer? Did you read the sql_iterator docs about how SQLServer does not return parameter values until you call MoreResults()? Corwin ... From:...
Corwin Joy
corwinjoy
Offline Send Email
Apr 7, 2006
4:13 am
1947
Hi. Method DBConnection::InternalConnect calls Windows' GetDesktopWindow() API function. This requires me to link with the DLL containing this function...
ronen_yuval
Offline Send Email
Apr 7, 2006
9:02 am
1948
Hi. DTL is currently supplied with VC6 project files only. There were 3 new version of MSVC since VC6. Isn't it time to supply project files for VC7.1 at...
ronen_yuval
Offline Send Email
Apr 7, 2006
9:29 am
1949
Hi, ronen_yuval. ... I don't think that this is necessary, since Studio 2002/2003/2005 can easily import dsp files from 6.0 and convert them into its native ...
Артем ...
redart_98
Offline Send Email
Apr 7, 2006
9:42 am
1950
Actually, I think this call is already #ifdefed out for non-windows platforms. The only reason this is there is that we wanted to be able to support ...
Corwin Joy
corwinjoy
Offline Send Email
Apr 7, 2006
2:42 pm
1951
Ronen, Though we have been supporting and testing versus VC7, we have kept the project file in VC6 format for backwards compatibility. This way VC6 users can ...
Corwin Joy
corwinjoy
Offline Send Email
Apr 7, 2006
3:37 pm
1952
... for SQL ... First, as I said, for supporting whatever it was added to support, you only need to provide the user for a way to supply the HWND, which can be...
ronen_yuval
Offline Send Email
Apr 8, 2006
9:20 pm
1953
Hi! I have a problem with the select_update_iterator, I use Access 2000 with msvc2005. That is the DB-File: www.maxis-house.de/AR_Zaun.mdb that is how I use...
maxmatthe
Offline Send Email
Apr 10, 2006
11:22 am
1954
I agree with Yuval on this. The GetDesktopWindow call should not be there. Alex ... define to...
aleskx
Online Now Send Email
Apr 11, 2006
2:40 am
1955
I have a puzzling problem. I have created DSN via Control Panel => Administrative Tools => Data Sources (ODBC). Tested when created and all works fine. When I...
aleskx
Online Now Send Email
Apr 11, 2006
2:40 am
1956
OK. If I have time what I may do is change the connect function so that instead of taking a boolean to activate SQLBrowseConnect it would instead take and HWND...
Corwin Joy
corwinjoy
Offline Send Email
Apr 11, 2006
2:42 am
1957
Maxi, I think you are correct that DTL is using all fields to drive your update clause for select_update_iterator. Since some of the fields in your old record...
Corwin Joy
corwinjoy
Offline Send Email
Apr 11, 2006
2:54 am
1958
I'm not sure. Did you perhaps create the DSN under "user DSN" rather than "system DSN" and the application is unable to access it? Corwin ... From: "aleskx"...
Corwin Joy
corwinjoy
Offline Send Email
Apr 11, 2006
2:54 am
1959
... instead ... handle ... I'd appreciate that very much, thanks....
ronen_yuval
Offline Send Email
Apr 11, 2006
4:52 am
1960
I have a table with a large number of columns and I am using variant_row with DynamicDBView to fill in the data. When I get to the 512th item in my row it...
bbransom
Offline Send Email
Apr 11, 2006
3:02 pm
1961
I have a table with a large number of columns and I am using variant_row with DynamicDBView to fill in the data. When I get to the 512th item in my row it...
bbransom
Offline Send Email
Apr 11, 2006
3:04 pm
1962
Actually, it appears the problem is deeper than this. After I do the following, I cannot even write one element without getting the following error message...
bbransom
Offline Send Email
Apr 11, 2006
3:46 pm
1963
No, I created it as system. Anyway, I found where different entries live (it is 32/64 bit issues after all) in the registry: the one created through control...
aleskx
Online Now Send Email
Apr 11, 2006
4:00 pm
1964
Well... it looks like you are using more fields than we had allowed for as you say. What happens if you just change the define for MAX_VARIANT_ROW_FIELDS to a...
cjoy@...
corwinjoy
Offline Send Email
Apr 11, 2006
4:16 pm
1965
Thanks. I just wanted to hear that changing that value would not be an issue that you knew of from a DTL perspective. Thanks. ... allowed for ... ...
bbransom
Offline Send Email
Apr 11, 2006
4:25 pm
1966
string sFullTableName = m_sDBName + (string) "." + sTableName; DynamicDBView<> view(sFullTableName, "*"); variant_row s(view.GetDataObj()); vector<string>...
bbransom
Offline Send Email
Apr 12, 2006
3:46 pm
1967
Further Info. I know I could use iterators here to loop, but the results are the same. When I get the data for each row, it appears to have the same issue with...
bbransom
Offline Send Email
Apr 12, 2006
4:15 pm
1969
I have encountered an issue where the type() member function does not recognize my unsigned values in My SQL. The following 3 Unsigned Values are coming back...
bbransom
Offline Send Email
Apr 13, 2006
7:52 pm
1970
Does anyone have a reliable recovery strategy (other than restarting) for a 24/7/365 running app? My problem currently is that, for whatever reason, after it...
aleskx
Online Now Send Email
Apr 13, 2006
9:51 pm
1971
Does anyone know how to achieve the reliable conection loss detection using DTL? What I mean is to be able to deal with and recover from db unavailability...
aleskx
Online Now Send Email
Apr 13, 2006
9:51 pm
Messages 1941 - 1971 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