Download

dtl


Thank you for for trying the Database Template Library!


Download in ZIP format (~700K) Version 3.2

Alternate download location at sourceforge.net

For technical support, and notifications when new versions of the library are available, subscribe to the DTL discussion group!

Subscribe to the DatabaseTemplateLibrary discussion group
DTL Discussion Group Page

Change Log :

Release Notes
  1. Version 3.2.3; Released February 24, 2002.
    ***Bugfixes***
    1. Fixed DBStmt::GetData() and DBStmt::PutData() problems for long strings (strings greater than 255 in length). Most of the changes occurred with BoundIO::MoveRead(), BoundIO::MoveWrite(), and BoundIO::MoveWriteAfterExec().
    2. Fixed typedefs in vec_multiset::iterator and vec_multiset::const_iterator to get rid of GCC compiler warnings.
    3. SelValidate() calls moved from operator*() to operator++() for select_iterator and sql_iterator to get proper for-loop behavior.
    4. Changed default key mode for DynamicDBView and DynamicIndexedDBView to USE_ALL_FIELDS.
    5. Fixed case sensitivity bugs dealing with column names in DBIndex and BoundIO/BoundIOs structures.
    6. Fixed bug to where parameters were getting bound to nonexistent parameter numbers in the case of insert_iterators. In the fix, we don't bind the extra parameters anymore.

    ***New Features/Improvements/Removed features ***
    1. Changed default key mode for DynamicDBView and DynamicIndexedDBView to USE_ALL_FIELDS.
    2. Limited OpenAccess support now provided: DBView and IndexedDBView support all data types in OpenAccess except for string, wstring, and blob.
  2. Version 3.2.2; Released January 31, 2002.
    ***Bugfixes***
    1. SQL_C_BIT is now the mapping for the bool type ... SQL_C_USHORT was buggy.
    2. Fix for single char binding.
    3. Fixed bug in BuildDefaultQry().
    4. Fixed iterator/const_iterator typedefs in IndexedDBView.
    5. Added missing constructor initializers.
    6. Fixed bug in storing of IndexName for key into indexes map. Also more IndexNamesAndFields parsing fun.
    7. Fixed support for char[] binding yet again.
    8. Fixed const problems in comparison operators for select_iterator and sql_iterator and added commutative form of these operators.
    9. Glitches in the docs.
    10. Fixed yet some more missing STD_:: qualifcations.
    11. Moved header guards for IndexedDBView.h and DBIndex.h to proper places.
    12. Bug identified for SQLServer: execution of a bad statement may result in a rollback, regardless of the IOHandler semantics.
    13. Note that unicode is not supported by Oracle 8.x or lower. Oracle only support unicode for version 9.01 and higher, but we haven't tested this yet. We've only tested unicode for SQLServer and MS Access.
    14. Fixed bug in assignment operator for variant_field that caused problem when copying from one DynamicDBView iterator to another.
    15. Changed default SQL binding for float data parameters from SQL_FLOAT to SQL_REAL.
    16. Removed bug that caused wide strings over 255 bytes in length to not be written to the database correctly.

    ***New Features/Improvements/Removed features ***
    1. GetData() and PutData() used to handle "binding" of all basic_string<> types. Now by default binding a string or blob has the capability to fetch a field of an arbitrarily large size.
    2. Added DBView::select_update_iterator.
    3. Changed DEFAULT_IDXCONTAINER to be std::hash_multiset for STLPort. Other configurations default to dtl::vec_multiset. This makes IndexDBView containers run *much* faster. This included downgrading IndexedDBView::iterator from bidirectional iterator to forward iterator if std::hash_multiset is the default index container as it only supports forward iterators.
    4. TCHAR/tstring concept made universal: TCHAR[] and TCHAR bindings used instead of char and char[] being allowed regardless of the UNICODE setting.
    5. star_bidirectional_iterator conversion constructors and comparison operators. Also added star_forward_iterator.
    6. Added DTL_LC and DTL_UC macros to lower-caseify and upper-caseify (respectively) the SQL passed to ODBC.
    7. Added autokey support. Forced some changes in DynamicBCA, DBView, IndexedDBView, DynamicIndexedDBView to properly support this.
    8. Changed MAX_J_DATE. Old max date was incorrect & too small.
    9. Vec_multiset cleanup.
    10. Removed BoundIO::BoundColMode.
    11. Added BoundIO::SetSQLType() so that user may specify a different SQL type to bind to other than the one specified in the ETI Map in bind_basics.cpp.
    12. Added index of code examples.
    13. Added SetParamsFromClass template to make it easier to set parameters when creating IndexedDBViews.
    14. General performance tuning. Replace internal wrappers for BCA, BPA, InsVal and SelVal plus did general performance tuning to improve overall speed of execution.
  3. Version 3.1; Released August 13, 2001.
    ***Bugfixes***
    1. Fixed bug with IndexedDBView so that any changes made by InsVal to the DataObj will be recognized by insert() and replace().
    2. BoundIO::CopyMember() performed only a shallow copy for char[] members. This has now been fixed with the MakeActualCopyOfMember() template.
    3. GenericCmp() incorrectly handled doubles by making epsilon equal to 1 >> 20, yielding an actual value of 0.0000000 due to the fact that this old value operates on integers and thus the fractional part was dropped. The change to make epsilon equal to pow(2, -20) fixed the problem.
    4. Fixed DBException::what() error messages so that multiple database messages can be returned.
    5. Binding for char arrays now uses the size of the array to set the maximum buffer size, this prevents a potential buffer overflow bug.
    6. BYTE typedef now at global scope to avoid potential clash with the typedef from Windows header files.

    ***New Features/Improvements***
    1. Added support for binary data / blob data types.
    2. Variable size buffer for binding basic_string. This allows us to control buffer sizes to bind larger strings and blobs in the BCA without adding unnecessary overhead.
    3. In IndexedDBView, addition of begin_AK(), end_AK() and friends to return iterators to beginning and end of DataObj lists for a given key.
    4. Cleaned up several semantic nits with destructors and also STD_::.
    5. Variant_row::operator[](const string &fieldName) now case insensitive for fieldName.
    6. Return type of DBView::select_iterator::operator++(int) changed to void to improve efficiency and C++ standard compliance. It is now equivalent to its preincrement cousin.
    7. Reimplemented internal comparison function for DBIndex to be more efficient by using raw function objects instead of callbacks in the default implementation. This improves the speed of IndexedDBView containers.
    8. Upgraded to run against gcc 3.0.
    9. Exposed DBConnection::GetDefaultEnvironment() and DBEnvironment::Release() to support manual release of HENV.

  4. Version 3.0; Released July 19, 2001.
    ***Bugfixes***
    1. Fixed IndexedDBView::replace() bug where it threw a DBException when *it == dataObj (replacing object with itself).
    2. Fixed parsing of IndexNamesAndFields string in IndexedDBView constructor. It crapped out on obstacles such as extra whitespace.
    3. Typedef for IndexedDBView::reverse_iterator and its const cousin properly fixed to be std::reverse_bidirectional_iterator.
    4. Fixed bug with DB_iterator copy involving incorrect management of internal buffers for parameter and row data. This bug resulted in incorrect behavior when iterators were copied, most noticeably in standard functions such as std::copy(), which accept their arguments by value.

    ***New Features/Improvements***
    1. Full unicode support. (Not avalable for gcc 2.96 due to lack of wide stream support; still a bit flaky for the Oracle ODBC due to driver bugs from Oracle). Also, we have added a pure unicode example project and converted the tests project converted to a pure unicode format.
    2. "Header Hell" - broke out the implementation of non-template classes into .cpp files to make for faster compile times and give fewer header dependencies.
    3. Changed code to use stringstream instead of deprecated C++ strstream. NOTE FOR LINUX USERS, this new version requires at least gcc 2.96-85 as older versions of libstdc++ that come with gcc do not support stringstream.
    4. DBConnections now may reference already existing connections using the Share() method.
    5. More efficient IndexedDBView::local_insert() implementation. Redundant searches were eliminated by making use of the form of multiset::insert() that takes an iterator hint for where the element should be put into the container.
    6. Facility for passing named arguments to the constructors for DBView, IndexedDBView, DynamicDBView, and DynamicIndexedDBView objects.
    7. DBView and DynamicDBView constructors now accept an initial IOHandler as an argument.
    8. BuildSpecialQry functors now allow the user to customize the SQL query generated for DBView iterators through the use of template specialization. This is primarily useful for custom queries such as "select distinct" etc.

  5. Version 2.5
    1. NOTE: If you are upgrading from a previous version of DTL then the major changes that will affect your old code are: 1. The new signature for InsValidate, which now requires BoundIOs as a parameter. 2. The default error handler for DBView and IndexDBView now throws rather than logging and suppressing errors. This default is user definable -- see DEFAULT_IO_HANDLER below for details.
    2. Added DBView<DataObj, ParamObj>::sql_iterator class (support for general queries). This enables DTL to work with all kinds of SQL queries, including stored procedures.
    3. Changed syntax of binding operator for BCA's and BPA's to indicate directional flow of information while keeping the old syntax around for backwards compatibility.
    4. DBStmt::Execute() now allows SQL_NO_DATA to be returned.
    5. Proper error checking of RETCODE's in DBConnection() and DBEnvironment().
    6. Enhanced facilities for handling null fields in the following classes: BoundIO, BoundIOs, variant_row, variant_field.
    7. Modified implementation of IndexedDBView routines mostly in relation to when validation functions are invoked.
    8. Fixed some bugs with dynamic views.
    9. Moved DataObj() methods from dynamic views and dynamic indexed views to DBView and IndexedDBView under the method name GetDataObj().
    10. Now can create variant_field's on the fly, especially for use in BCA's and BPA's using the variant_row::_typename() syntax.
    11. Support for variant_row's as ParamObj's.
    12. Reentrancy of BCA's and BPA's.
    13. Fixed bugs in parsing of IndexNamesAndFields string passed into constructor for IndexedDBView.
    14. Rationale of example and test projects changed. The examples now also will serve as a preliminary battery of test code for DTL as well as being code meant to clearly show the new user how various things work in the library. Tests contains further code to exercise DTL.
    15. Removed all using-clauses from DTL and explicitly qualified all code which uses the C++ standard namespace. This involved some tricky preprocessor macros to get the right behavior.
    16. Generalized the underlying associative container that DBIndex's use to store DataObj *'s. The underlying associative container now is passed in as a template parameter at the IndexedDBView level and whether it's hashable or not as another template parameter. Added GenericHash() as well as a ContainerFactory function object to help accomplish this purpose.
    17. Added support for null fields in BoundIO, variant_field, GenericCmp() and GenericHash().
    18. Added MoreResults() support to grab more record sets if a statement contains multiple ones.
    19. cb_ptr_fun() and cb_ptr_fun_w_ret() now also accept pointer-to-member methods.
    20. Added DEFAULT_IO_HANDLER macro by which the user can specify the default IOHandler to use. If the user doesn't define this macro, DTL defines AlwaysThrowsHandler to be the default. Previously, the default handler was hardwired to be LoggingHandler.
    21. Added a dtl_config.h file for user-defined macros and other settings into the lib directory.
    22. Added full set of comparison operators to variant_row's so objects of that type can be used in STL constructs that require these operators.
    23. Fixed more typename bugs internally.
    24. Fixed bug in DBIndex::lt() to compare based on the order of fields that the user passed in. The code now properly uses the first field listed as the most significant field to search on and it compares fields in the order specified in that list, through the last field in the list (the least significant), if necessary. In previous versions, this comparison function mistakenly considered the first field name in alphabetical order as the most signficant and proceeded in pure alphabetical order to make necessary comparisons.
    25. Fixed global initialization bug with the SQL_types_to_C ETI_Map. Problem was found when certain global IndexedDBView's were not having the map already built so they could construct themselves as initialization order of globals/class statics is undefined. Fixed by replacing with a global function GetSQL_types_to_C() that returns a reference to a local static ETI_Map that is built properly on the first call to the function, which ensures the proper order of initialization.

  6. Version 2.01
    1. Added support for bool data type.
    2. Successfully ported code to Microsoft SQL Server.
    3. Fixed minor bug with aliased views that did not allow table names to be aliased in queries.
    4. Renamed std_inc.h to std_dtl_inc.h and iterator.h to DB_iterator.h to avoid filename clashes.
    5. Added DBException::GetAllODBCErrors() method.

  7. Version 2.0
    1. Added support for Boris Fomitchev's STLPort implementation of the SGI Standard Template Library.
    2. Successfully ported code to Red Hat Linux 7 under gcc 2.95 running unixODBC and a MySQL 3.23.33 database.
    3. Corrected constness throughout DTL. This fixed some issues that we had in 1.1 which prevented us from running correctly versus some of the standard STL algorithms.
    4. Rewrote the code to make it exception safe.
    5. Added error handling support for all DTL iterator classes, DBView, and IndexedDBView in the form of IOHandler.
    6. Iterator refinements:
      1. DB_select_iterator::operator*() now returns a const DataObj & to make that operation truly read-only.
      2. All output iterators now use proxies to emulate *it = value to enforce their write-only quality.
      3. Also fixed prefix/postix implementation for operator++() on all iterators.
    7. Enhanced DBConnection class to use ODBC connection pooling.
    8. Added Julian date support through the jtime_c class.
    9. Simplified the structure for DBView to need fewer template parameters. In version 1.1 the structure was DBView<DataObj, ParamObj, BCA, BPA> in version 2.0 the structure is simplified to DBView<DataObj, ParamObj> .


[DTL Home]

Copyright © 2002, Michael Gradman and Corwin Joy.

Permission to use, copy, modify, distribute and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appears in all copies and that both that copyright notice and this permission notice appear in supporting documentation. Corwin Joy and Michael Gradman make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty.

This site written using the ORB. [The ORB]

1