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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 835 - 869 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
835
I have gone ahead and made a new release of DTL to add a few requested features and fix some minor issues. Below are the details. Corwin * Version 3.6;...
Corwin Joy
corwinjoy
Offline Send Email
Feb 1, 2004
8:08 am
836
Hi Corwin, I just downloaded the new DTL 3.6 and when attempting to compile it with MSVC 7, I get the following errors: variant_row.cpp ...
gregdo2000
Offline Send Email
Feb 2, 2004
7:04 pm
837
//platform:Win2000 //compiler: VC6 (SP5) //Database: MS SQLServer 7.0 // a table CREATE TABLE [dbo].[DTABC] ( [DTCode] [varchar] (50) NOT NULL , [DTName]...
daiyie121
Offline Send Email
Feb 3, 2004
1:21 am
838
I don't have an easily available copy of MSVC 7, only 6 so I had not done a compile test on this. In the latest version we changed the declaration of the...
Corwin Joy
corwinjoy
Offline Send Email
Feb 3, 2004
6:47 am
840
I'm not sure why your stored procedure is not working. If you look in example/storedproc.cpp we have an example of calling a SQL server stored procedure that...
Corwin Joy
corwinjoy
Offline Send Email
Feb 3, 2004
2:30 pm
841
I tried changing the return statement to return dtl_variant_t(m_val); but it had no effect (same error). As you said, explicit is there to prevent unwanted...
gregdo2000
Offline Send Email
Feb 3, 2004
6:34 pm
842
I am using DTL for inserting data to a table by insert_iterator. It works fine but some time it shows one extra filed in table. See the second filed in the...
nitin_garg_2000
Offline Send Email
Feb 3, 2004
6:51 pm
843
From the looks of it, it looks the function GetFieldInfo() in bind_basics.cpp is generating a garbled field name. I would have to try and reproduce the bug...
Corwin Joy
corwinjoy
Offline Send Email
Feb 3, 2004
7:08 pm
844
I have gone ahead and made a new minor release that addresses this: 3.6.1 ***Bugfixes*** Removed keyword "explicit" in dtl_variant_t constructor when using...
Corwin Joy
corwinjoy
Offline Send Email
Feb 3, 2004
9:44 pm
849
I use DTL for a long time! I know It can call Store Procedue! If the procedure is common like //-------------------- CREATE PROCEDURE Insert_DTABC_Test AS ...
daiyie121
Offline Send Email
Feb 4, 2004
2:15 am
850
Sorry it has taken me a while to get back to you. Yahoo groups has been on the blink this week from the mydoom virus and has not been sending out messages so...
Corwin Joy
corwinjoy
Offline Send Email
Feb 7, 2004
6:48 am
851
thanks for the reply. I am giving the table definition. Can it be due to some problem with ODBC driver. My application is multithreaded and i am using seperate...
nitin_garg_2000
Offline Send Email
Feb 7, 2004
6:48 am
852
Nitin, I had time to create the table you sent and run an example similar to the one you gave which works fine. void test(DBConnection *mypDBConn) { ...
Corwin Joy
corwinjoy
Offline Send Email
Feb 8, 2004
5:29 pm
853
Corwin, i am initializing the r. Just to give you an idea i deleted that part from the code. so don't worry about initialization of the r. Please give me some...
nitin_garg_2000
Offline Send Email
Feb 10, 2004
12:56 am
854
OK. If you have properly initialized the row value then it could be an error in the driver or the DTL code that is somehow related to multithreading. The...
Corwin Joy
corwinjoy
Offline Send Email
Feb 10, 2004
1:24 am
855
Hello, I would like to perform a innerjoin like request with DTL. I'll discuss what I'm trying to do. I have 3 tables: <node>, <element>, <node_element>: -A...
ericlaro
Offline Send Email
Feb 11, 2004
10:44 pm
856
The syntax you have below should work directly in DTL as a pass-through query if you are running against access or SQL server. If you are running against other...
Corwin Joy
corwinjoy
Offline Send Email
Feb 11, 2004
11:39 pm
857
I'm running on PostgreSQL. What do mean by "pass-through query" in DLT? Do you refer to the DTL function "DBStmt"? -If yes, could you let me know how I can get...
ericlaro
Offline Send Email
Feb 12, 2004
5:05 pm
858
... Look at the ODBC docs on MSDN.microsoft.com. Basically, there are two kinds of query you can run in ODBC. One kind uses generic database indepent SQL '92...
Corwin Joy
corwinjoy
Offline Send Email
Feb 12, 2004
6:55 pm
859
Hi Corwin, I have been playing with the following connection method and would like to suggest a small change: void DBConnection::Connect(const tstring &DSN,...
gregdo2000
Offline Send Email
Feb 17, 2004
6:55 pm
860
Greg, I agree - I think I did not implement the connection pooling in such a great fashion. The problem here is that pooling has to be turned on or off when...
Corwin Joy
corwinjoy
Offline Send Email
Feb 17, 2004
8:07 pm
861
Hi Corwin, I like the changes that you made for connection pooling. Thanks. As for the error messages, Oops, I guess I just didn't look hard enough as you are...
Greg Doherty
gregdo2000
Offline Send Email
Feb 17, 2004
11:19 pm
862
In fact, we've tried to keep the defines down to a minimum. Most of the ones that are there are only to work around non-standard features of various...
Corwin Joy
corwinjoy
Offline Send Email
Feb 17, 2004
11:47 pm
863
A connection properties object sounds like a great idea. The ODBC driver that I am currently using can't handle bulk operations and is case sensitive for field...
Greg Doherty
gregdo2000
Offline Send Email
Feb 18, 2004
12:04 am
864
I'm having an odd problem with long memo fields in MS Access with DTL. I've created a BCA as described in the documentation, bound the string to the...
lukeh_2004
Offline Send Email
Mar 11, 2004
12:03 pm
865
Luke, Thanks for reporting this, sorry it took so long for me to reply, for some reason Yahoo did not forward your mail. Anyway, the problem turns out to be...
Corwin Joy
corwinjoy
Offline Send Email
Mar 19, 2004
4:16 am
866
Corwin, Thanks. I've made those mods and everything is working great now. Luke ... for some ... about how many ... caused ... the ... check ... bufferSize); ...
lukeh_2004
Offline Send Email
Mar 19, 2004
7:56 pm
867
Hello, I would appreciate any help with MS SQL Server 2000 system stored procedures calling. The ideal variant would be to make dtl::DynamicDBView<>...
mkochetkov
Offline Send Email
Mar 22, 2004
12:33 pm
868
Suppose we have DynamicDBView<> view("exec sp_columns db_example", ""); DynamicDBView<>::sql_iterator it = view; it.GetStmt().ClearStmtAttrs(); variant_row vr;...
Corwin Joy
corwinjoy
Offline Send Email
Mar 23, 2004
5:25 am
869 Corwin Joy
corwinjoy
Offline Send Email
Mar 23, 2004
5:46 am
Messages 835 - 869 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