Unable to execute statement : "INSERT INTO CONFIGURATION (NAME,VALUE) VALUES ((?)),(?))" Is the error I am receiving. Code which causes the problem is: try{ ...
As a first guess the words "NAME" or "VALUE" might be reserved in your DB_Engine. Try executing this query in a query window with actual values substituted...
Hello, Corwin, I believe you have forgotten to finish the ODBCINT64 implementation. I have added operator ODBCINT64 to dtl_variant_t and variant_field types so...
Hello, Do you plan to implement SQL Decimal (in MS SQL Server terms) full- featured type support? It is bound to double now while I mean a true big number...
SQL decimal isn't exactly for large numbers. Instead it is really more for fixed precision numbers. For ease of use we just mapped this double but it would...
SQL decimal isn't exactly for large numbers. Instead it is really more for fixed precision numbers. For ease of use we just mapped this double but it would...
Version 3.6.2; Released May 17, 2004 ***Bugfixes*** Added compiler flag to fix iterator definitions under .NET with STLPort Added enhancements to support SQL...
select_update iterator has no parameters by design. Instead, when it is constructed it automatically builds a list of parameters either via: -USE_ALL_FIELDS -...
... OK, I give up. I can compile my code but I cannot make it working. I would appreciate any help with the following: #include <dbaccess/dtl/dtl.h> class...
... I have not added ODBCINT64 to variant_t. If you want to use this, you will need to have a regular class with an ODBCINT64 memeber and just bind it...
... variant_field ... I ... Thank you a lot. There are all diffs below. This comment: // M.Kochetkov denotes my changes for custom memory binding. You may want...
Hello! I think I've found a bug in NULLs handling. When calling ClearNull() for field which have a string type before INSERT into database, then this operation...
I have a simple program working quite well when I use Windows XP , Visual Studio 6.0 and Access Database. Now I am trying to port to Linux Fedora Core2, g++...
Ben, Thanks for checking the rpm file. Windows has a nasty habit of inserting ^M in files so I always run fix-line-endings.sh (which runs d2u on text files) ...
You are correct. This is a bug, and your fix is correct as well. Thanks for this, I will incorporate the change you suggest into the next release. Corwin...
What happens when you run "example" and "tests" on your machine. There are a few flags you need to set for Linux if you are writing your own make file. Take a...
1) I already thought of mimicing the make files from test ... unfortunatly this did not help 2) examples does not work as the scripts do not work with postgres...
OK. There are three main possibilities here for where the bug is: 1. Your code. 2. The DTL code. 3. The postgres ODBC driver. Offhand, my first guess would be...
The example you gave worked fine for me. Did you remember to set the define DTL_VARIANT_USE_FIXED_LEN_STRING in lib and your project as we had discussed...
... No, I did not. I have three dtl versions for this transition and it looks something went wrong with build parameters sharing. Thank you a lot. -- Michael...
Ben - Thanks for figuring out what was going wrong with the postgres driver! I have posted this to the list and may add this to the FAQ. (First I will likely ...
i've got some changes for you that i forget to propagate back to the dtl source for you ... please include in next release ... * changed IndexedDBView::fetch()...
Gradman, Michael
michael.gradman@...
May 27, 2004 5:44 pm
994
Hi there. Does DTL use or support persistent connection to ODBC? I can't seem to find any reference to persistent connection in the documentation or this...
Not sure what you mean here by "persistent connection". By default DTL turns on ODBC connection pooling so that it can re-use existing connections......