Note: forwarded message attached. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection...
Hi Brocha, I recall there was a problem with bulk fetches, so I worked around it by using single selected like you did. I just do a copy() over all the ...
... From: "Paul" <elegant_dice@...> ... It should. The place to look at would be line 1195 in select_iterator.h boundIOs.SelUserValidateAddr(pdata_begin...
Hi All Has anyone had any luck getting Stored Procedure Result sets to work with Oracle's ODBC driver (Oracle 9i versions 9.02.00.00) I have included some...
MessageJeff, There are a couple of things I can think to try here: 1. The Oracle drivers are unfortunately a bit flaky with some of the more 'advanced' ODBC...
Hi Corwin: I am using the Result set syntax {call PackageName.ProcedureName({resultset <NumberOfRows>, Table(array), Table(array),...})} as I am returning a...
Jeff, Have you looked at the documentation that comes with the Oracle ODBC drivers? It is called sqora.chm and comes with the Oracle ODBC drivers. Anyway, if...
Brocha, We have two sets of regression tests that we run after changes to check that all is well. There is the example project and the expected results can be...
Michael, Thanks again for these changes. I have merged them into CVS after running the regression tests and everything looks good. This is nice to have the...
In addition to Corwin's advice, I can throw out one or two other things but I've never actually tried it. I think if you want to use Oracle syntax it would be...
Corwin, I ran the example project and got identical results with the change and without. Unfortunately I am not able to compile the tests project (VC6 SP6) as...
Brocha Strous
brocha@...
Sep 8, 2005 3:58 am
1732
Brocha, This is due to the new linux 64 bit support changes. I tested these with gcc but have not done a compile on vc yet. I will look into this. Anyway,...
Hi, Why does DTL turn SQL string into upper case and is there a way to prevent it from happening? I have a case-sensitive database that I have no control of. ...
Actually, it is up to you how you want DTL to handle case. In the example project files we have defined DTL_UC. This causes DTL to convert all the table and...
We have been running our DTL application with BoundsChecker, which is reporting a whole slew of illegal memory accesses. My investigations have led me to...
Hi Michael, Adding distinct like this might be a good idea. Let me think about it a bit more before I incorporate these changes. Obvious questions are: 1. If...
Moshe, I agree. I made a mistake here when I converted the end pointer to be compatible for MSVC. I should have just added size() not size() + 1 as you point...
Hi, I am trying to get the example that comes with Version 3.6.10, I am trying to use Access 2003 and the mdb file will not be recognised by Access. I am quite...
... That is because database is corrupted. Download version 3.6.9 and use database from there. I guess CVS is the guilty this time for this corruption? Corvin?...
... Somehow I doubt that whatever is done from an ODBC angle can corrupt a database so badly that its corrupted at a binary level. Sure, you can screw up the...
Daniel, I have not kept the bpr files up to date so I should really remove them from the distibution. If you look at the ReadMeBorland.html file the way we...
Thanks for pointing this out. I have been out of town for a few days due to Hurricane Rita but I will make a new build. Corwin ... From: "Kevin Morrison"...
Hi All, I've found a nasty crash bug in the cleanup of the DTL on program termination. This is the sample program: #include "DBConnection.h" int main() { ...
I've seen something like this reported before in the case of DLLs: http://groups.yahoo.com/group/DatabaseTemplateLibrary/message/1200 the fact that it only...
I haven't looked into this, but I wouldn't be suprised if the problem was just that the ODBC libs/drivers are already destructed. Clearly we should not be...
Another approach that maybe we could take would be to change the default connection to be stored as a CountedPtr<DBConnection> and see if those destructors get...
I think the problem basically comes down to the ambuguity of global destruction order. Essentially the default connection is a global object. Sometimes, the...
Hello DatabaseTemplateLibrary I've found a bug when working with RandomDBView with MS SQL Server 2000. If you call end() function of an iterator on this class,...