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 2413 - 2442 of 2479   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2413
Hello, I am using DTL with Ingres database since long time. Now I have to port my application on the MS SQL server 2005. I have just changed the DSN and start...
Prakash
pakya_chopade
Offline Send Email
Jan 8, 2009
11:53 am
2414
Hello Prakash, I am confused by your post. Are the queries running with warning messages or not working at all? We set a few connection attributes, several of...
corwinjoy@...
corwinjoy
Offline Send Email
Jan 9, 2009
12:07 am
2415
Hello, I apologize in advance if this gets posted twice, but my post yesterday didn't seem to make to the board. Currently, I am using DTL with Ingres database...
santosh_at_dsk
Offline Send Email
Jan 9, 2009
12:08 am
2416
Hi all, I'm new to DTL and I've finally got my app reading data from a table of my database. I noticed that the order of the columns and the data have been...
michaelonthecoast
michaelonthe...
Offline Send Email
Jan 9, 2009
12:08 am
2417
Hello! I have successfully used the DTL with Ingres database. My company has decided to use the MS SQL server instead of Ingres database. Initially I thought...
santosh_at_dsk
Offline Send Email
Jan 9, 2009
12:08 am
2418
Well, I'm not sure what you mean. *read_it should give you something of type Claims. So however you want to access and print the member in your Claims struct...
Corwin Joy
corwinjoy
Offline Send Email
Jan 9, 2009
12:15 am
2419
Hello Corwin, Thanks a lot for the reply. This solves my problem. After commenting those lines from the DBStmt.cpp file I could able to run the application. ...
Prakash
pakya_chopade
Offline Send Email
Jan 12, 2009
11:12 am
2420
In order for DTL to support Unicode you need to be sure to build dtl.lib and your project with the preprocessor flags UNICODE, _UNICODE and _MBCS.  If you...
Corwin Joy
corwinjoy
Offline Send Email
Jan 12, 2009
5:01 pm
2421
Hello Corwin, As you have suggested, I build the DTL with UNICODE, _UNICODE and _MBCS. In my application I am already using _UNICODE preprocessor for debug...
Prakash
pakya_chopade
Offline Send Email
Jan 13, 2009
1:13 pm
2422
Prakesh, For the release build, we didn't define a release with unicode configuration. Just do a normal release build with UNICODE, _UNICODE and _MBCS defined....
corwinjoy@...
corwinjoy
Offline Send Email
Jan 13, 2009
7:06 pm
2423
... And still it won't compile. I have the same problem as the OP, namely: bind_basics.cpp:789: error: cannot convert 'SQLINTEGER*' to 'SQLLEN*' for argument...
Robert Bielik
robert_bielik
Offline Send Email
Jan 15, 2009
3:53 pm
2424
The type of that last column really should be SQLLEN *. Just change the variable declaration on line 775: SQLLEN cbPkCol, cbSQLType; This will then match the...
corwinjoy@...
corwinjoy
Offline Send Email
Jan 15, 2009
9:49 pm
2425
... the ... Thnx Corwin, I figured that out too, so now I have a cleanly building DTL on 64bit Ubuntu. /Rob...
Robert Bielik
robert_bielik
Offline Send Email
Jan 16, 2009
12:43 pm
2426
Hi Corwin, I could able to insert the unicode string using Parameter (Parameterized) query in MS SQL server 2005. I don't know why it does not works with...
Prakash
pakya_chopade
Offline Send Email
Jan 19, 2009
12:19 pm
2427
Hmm... I'm having a problem with BPA, following the examples. Quick question: the iterator GetQuery() method, will it return the SQL query with the parameter...
Robert Bielik
robert_bielik
Offline Send Email
Jan 19, 2009
2:51 pm
2428
... query Scrap that, my bad. Works fine now on Windows (VS 2005). But when I try running the same code on Linux (Ubuntu 8.04) I get a crash: *** glibc...
Robert Bielik
robert_bielik
Offline Send Email
Jan 19, 2009
3:54 pm
2429
Basically, the GetQuery method will return the query with the parameters represented by ? marks. These parameters are then bound to actual addresses in a row...
corwinjoy@...
corwinjoy
Offline Send Email
Jan 20, 2009
9:37 pm
2430
Well, from the error message you are getting what it actually looks like is that Ingres is having trouble with the SQL syntax in the statement UPDATE...
corwinjoy@...
corwinjoy
Offline Send Email
Jan 20, 2009
9:54 pm
2431
If not, does anyone have any tips or pointers on how to approach a port? I didn't really expect it to work, but I tried just setting my env var ...
theoxykid
Offline Send Email
Jan 20, 2009
9:55 pm
2432
... Don't worry about the sed errors, it is just used to emulate "makedepends" - i.e. so the program knows that if a header file is changed any files that...
Corwin Joy
corwinjoy
Offline Send Email
Jan 20, 2009
10:09 pm
2433
... slower ... But the bulk fetch works perfectly if I don't use parameters. Problem may be a combination of using parameters with bulk fetch ? I'll try single...
Robert Bielik
robert_bielik
Offline Send Email
Jan 21, 2009
6:54 am
2434
... Nope. Same problem. Works without parameters, but not with :( /R...
Robert Bielik
robert_bielik
Offline Send Email
Jan 21, 2009
7:40 am
2435
Fantastic; thank you so much. There are about a half-dozen such errors, which I have corrected with a patch against the pre-release 3.6.12 (along with a couple...
theoxykid
Offline Send Email
Jan 22, 2009
6:35 pm
2436
Hi, I'm trying to build the DTL with the MinGW Compiler. So far I have used codeblocks to convert the MSVC Project to a MinGW Project. Now, when compiling, I...
Jens Weller
JensWeller@...
Send Email
Jan 27, 2009
1:51 pm
2437
Looking in the config directory I have a config for MinGW CC += -march=i686 -mno-cygwin -DDTL_MINGW32 so you can try the DTL_MINGW32 define. If that is not...
corwinjoy@...
corwinjoy
Offline Send Email
Jan 29, 2009
1:41 am
2438
I have succeeded building it with codeblocks. Just had to import the msw Project, and use MinGW as default Compiler. Also I had to place the windows.h into the...
Jens Weller
JensWeller@...
Send Email
Jan 29, 2009
9:41 am
2439
I managed to get DTL compiled for RHEL x86_64. This took some work as there were some issues with SQLLEN, SQLINTEGER, ODBCINT64. After reading the forum,...
ron.chapman@...
ron.chapman...
Offline Send Email
Jan 29, 2009
5:16 pm
2440
Well, the thing to look at here is a function called ETI_Map::build() in bind_basics.cpp. Here we define the association between ODBC types and C types. So,...
Corwin Joy
corwinjoy
Offline Send Email
Jan 29, 2009
5:47 pm
2441
Hi everybody, I yust started using the dtl. On windows it was relatively smooth to get running (except the static runtime library in the release configuration...
ulrichard@...
ulrichard...
Offline Send Email
Feb 3, 2009
10:58 pm
2442
Hi Richard, We've actually had several folks compile DTL on ubuntu recently. The makefile is nothing special, it just compiles everything in the library and...
Corwin Joy
corwinjoy
Offline Send Email
Feb 9, 2009
5:55 pm
Messages 2413 - 2442 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