OTL 4.0, Introduction

Introduction

This document describes the Oracle,ODBC and DB2-CLI Template Library,Version 4.0 (OTL 4.0). OTL 4.0 is a C++ library based on C++ templates.

OTL 4.0 was designed as a combination of a C++ template framework and OTL-adapters. The framework is a generic implementation of the concept of OTL streams. The OTL-adapters are thin wrappers around the database APIs and are used as class type parameters to be passed into the template framework.

OTL 4.0 covers the functionality of a full featured C++ database access library with just a handful of classes: otl_stream, otl_connect,otl_exception,otl_long_string,and several template PL/sql (Oracle) table container classes,generated from the template framework and the OTL-adapters.

The OTL code gets expanded into direct database API function calls,so it provides very decent performance (only 10-15% overhead compared with the database APIs themselves) and reliability in multiprocessor environments as well as Traditional batch programs. OTL 4.0,being a template library,is highly portable since it is self-sufficient and compact enough.

OTL 4.0 is ANSI C++ compliant (ANSI C++ typecasts,clean templatized code,etc.),tightly integrated with the Standard Template Library (STL) via STL-compliant stream iterators,and natively supports the STL std::string by the otl_stream class. OTL integrates with ACE,and supports ACE_TStrings. A new C++ standard (C++11) was adopted in 2011. OTL uses C++-11 features like move constructors,move assignment operators,nullptr,etc. in order to keep its code clean and modern for compilers that support C++11 features.

OTL 4.0 supports all major and a few minor relational database types (Oracle,MS sql Server,DB2,Informix,TimesTen,MAX/DB,etc.) natively via the corresponding database API. For the rest of database types (Postgresql,MysqL,Sybase,sqlite,MS ACCESS,Firebird,OTL has support via ODBC 3.x,or ODBC 2.5 (legacy applications).

In the last several years (2004-present),transition from 32-bit platforms to 64-bit platforms has occurred: OTL's source code is portable,and it supports both 32-bit and 64-bit C++ compilers.

Also,OTL supports UTF-8 and UTF-16 string data for Oracle,and UTF-16 for the rest of the database types,when the underlying database API / ODBC driver supports it.

相关文章

项目需要,有个数据需要导入,拿到手一开始以为是mysql,结果...
本文小编为大家详细介绍“怎么查看PostgreSQL数据库中所有表...
错误现象问题原因这是在远程连接时pg_hba.conf文件没有配置正...
因本地资源有限,在公共测试环境搭建了PGsql环境,从数据库本...
wamp 环境 这个提示就是说你的版本低于10了。 先打印ph...
psycopg2.OperationalError: SSL SYSCALL error: EOF detect...