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 817 - 851 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
817
Hi, I have converted my project to be compiled with the Microsoft VC++ v7 compiler and am having some trouble. I am compiling as a DLL and dtl.dll is created,...
gregdo2000
Offline Send Email
Jan 6, 2004
9:57 pm
818 Corwin Joy
corwinjoy
Offline Send Email
Jan 7, 2004
5:33 pm
819
DTL is a template library. Therefore, most of the code is templates that lives in the .h files and are only instantiated when your final classes are built. ...
Corwin Joy
corwinjoy
Offline Send Email
Jan 7, 2004
11:45 pm
820
What I believe you are experiencing is SQL server stupidity. SQL Server has this non standard thing where output parameters are not filled until SQLMoreResults...
Corwin Joy
corwinjoy
Offline Send Email
Jan 15, 2004
1:31 am
821
Hi, I have a little problem with insert_iterator: First of all i created a table with DBStmt : Create table tabaffaires("tNom" TEXT, "tPrenom" TEXT, "tRue"...
ekhamissian
Offline Send Email
Jan 15, 2004
12:57 pm
822
Unfortunately there is not an easy solution here since DTL by default does not quote the field names. It will only quote field names with spaces in them. The...
Corwin Joy
corwinjoy
Offline Send Email
Jan 15, 2004
3:37 pm
823
Andrew, I had a go a rewriting the DynamicDBView so that now it automatically can recognize parameters and does not need a special BPA. The one disadvantage is...
Corwin Joy
corwinjoy
Offline Send Email
Jan 15, 2004
10:13 pm
824
Hi all !! I wanted to try DTL with MS VisualStudio 6.0 (and/or .NET) in a simple application. In case of Win32 Console application there was no problems !! It...
Nedim
nedo_2zla
Offline Send Email
Jan 19, 2004
3:04 pm
825
We've compiled and run fine on MFC. There are a couple bits you need to do: 1. Be sure that DTL_USE_MFC is defined in your project (but not in the lib ...
Corwin Joy
corwinjoy
Offline Send Email
Jan 19, 2004
8:04 pm
826
Here are the standard MFC instructions. There is on additional bug that if you are using the MFC control BCGControlBar it #defines a macro called variant_t...
Corwin Joy
corwinjoy
Offline Send Email
Jan 19, 2004
8:10 pm
827
Thanks Corwin, it was my fault ! I've compiled DTL with "Single-threaded" runtime library and my MFC project with "Multi-threaded" runtime library. After...
Nedim
nedo_2zla
Offline Send Email
Jan 20, 2004
11:08 am
828
Hello, I'm trying to figure out what would be the bound variable datatype for a CLOB field (Oracle 9i) using sql_iterator? std::string does not seem to work....
aleskx
Offline Send Email
Jan 20, 2004
7:40 pm
829
I haven't really messed with this datatype, but looking at the Oracle documentation section XVI: ...
Corwin Joy
corwinjoy
Offline Send Email
Jan 20, 2004
10:31 pm
830
Hi all ! I would like to insert a large amount of data by using bulk_copy() in a separate thread. How can I know the actual status and current progress of the ...
Nedim
nedo_2zla
Offline Send Email
Jan 21, 2004
10:21 am
831
... We don't have a way to poll within the bulk_copy function. One possibility is to bulk copy in chunks. E.g. 256 rows at a time and update progress between...
Corwin Joy
corwinjoy
Offline Send Email
Jan 22, 2004
1:00 am
832
Corwin, I have solved my problem. The reason my code was failing was because of NULLs, so instead of bare field name I used NVL(clob_field_name, TO_CLOB(' '))...
aleskx
Offline Send Email
Jan 22, 2004
1:01 am
833
Thanks !! ... in ... thread ... and I ... real ... database ... However, ... inserting rather ... string. See...
Nedim
nedo_2zla
Offline Send Email
Jan 22, 2004
2:20 pm
834
... actually tstring is just our typedef for std::string (or std::wstring if unicode is set). for fixed list strings, you actually need to use the tcstring...
Mike Gradman
windryder1
Offline Send Email
Jan 22, 2004
4:15 pm
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
Messages 817 - 851 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