Hi, I followed the instructions for using DTL thru cygwin I do sh build-all.sh which though getting 'no getopt command found' successfully built libDTL.a for...
To create more complex queries I'm now looking at SQLpp http:// sourceforge.net/projects/sqlpp/ (I'm very interested in other similar tools should you have any...
OK. These types are all defined in windows.h which dtl should include before including sqltypes.h. So, I'm not sure why you are getting this. They may have...
Hello, Using DTL how we can stop the execution of current query? I have fired a query to the database. This query is taking lot of time to extract data from...
Hello Corwin, Sorry that it took so long for me to get back to this. I've had to postpone work on this project. Just wanted to say thanks for researching this...
I have stumbled at this point with DTL3.6.10, too. The workaround I took was removing the duplicated "DTL_GENERIC_BIND_OPERATORS(STD_::wstring);" in BoundIO.h....
I have stumbled at this point with DTL3.6.10, too. The workaround I took was removing the duplicated "DTL_GENERIC_BIND_OPERATORS(STD_::wstring);" in BoundIO.h....
I have stumbled at this point with DTL3.6.10, too. The workaround I took was removing the duplicated "DTL_GENERIC_BIND_OPERATORS(STD_::wstring);" in BoundIO.h....
I have stumbled at this point with DTL3.6.10, too. The workaround I took was removing the duplicated "DTL_GENERIC_BIND_OPERATORS(STD_::wstring);" in BoundIO.h....
I have stumbled at this point with DTL3.6.10, too. The workaround I took was removing the duplicated "DTL_GENERIC_BIND_OPERATORS(STD_::wstring);" in BoundIO.h....
I have stumbled at this point with DTL3.6.10, too. The workaround I took was removing the duplicated "DTL_GENERIC_BIND_OPERATORS(STD_::wstring);" in BoundIO.h....
Hi all, I am migrating a win32 project to x64 OS platform via VC8 recently. One issue is, type SQLLEN is not supported, and were recommanded to use SQLINTEGER...
Hi How do I use connection.beginTransaction() and connection.endTransaction() using dtl. I am not getting beginTransaction() method on connection object. Can u...
In DTL transactions are all done using try catch on the connection object since ODBC only supports transactions at the connection level. So generically it will...
Hi All, I successfully built the DTL 3.6.4 source & sample projects in VS2005 for X64 platform. However, when I run the DTL sample project on the X64 platform...
This looks like even the first example, TableStructExample, is not running correctly since that should be returning results. 1. You did setup the schema and...
Yes I did not insert the data into the tables. However, I now have schema set as per the readme file. I copied the schema along with the data from the access...
OK. It is hard for me to say exactly what the problem is without tracing it on a x64 box which I don't have access to. But, it sounds like the problem is with...
Hi, I am getting another crash with the 64 bit port of DTL in Windows. It is a "Run-Time Check Failure #2 - Stack around the variable 'iLen' was corrupted." ...
I would recommend running the port through either BoundsChecker or Purify to make sure that no memory errors are happening under the 64 bit version since that...
Hello, We have two dlls A.dll and B.dll. In A.dll we have added a class DatabaseConnection. This class has a method, ConnectToDatabase() which connects to the...
Here are a couple ideas: 1. Just pass the connection object explicitly. We have named arguments syntax that makes this pretty easy as shown in the DynamicCopy...
Yes. What you want is bulk_copy http://dtemplatelib.sourceforge.net/bulk_copy.htm This fetches a block of records from the database and is about 10-100x...
Hi Corvin, group I've run into one problem and i cannot find a solution. I am trying to do DB backups from my app, that uses DTL. When i execute simple SQL:...
Sorry. I have no idea what could be causing this. My only advice here is to try running it two ways. 1. Using DBStmt. 2. Using SQLIterator. Just maybe it could...
Hi I think I've solved it. BACKUP DATABASE is displaying message that Backup was successful or not. I have to add SqlIterator.MoreResults() to read it - and it...
Hello I have the following Store procedure (This is only example that demonstrate the problem): create PROCEDURE multi_result_test @p1 Int AS BEGIN select...