OTL support v15
Oracle Template Library (OTL) is a C++ library for database access. It consists of a single header file. To know more about OTL, see the Oracle, Odbc and DB2-CLI Template Library Programmer's Guide.
OTL certification
The EDB OCL Connector, version 13.1.4.2, is certified with OTL 4.0. To use OTL-supported data types and for other OTL-specific behavior, define the OTL environment variable (the value isn't important) on the shell before running an OTL-based app. For example, you can export OTL=TRUE
for conditional execution of scenarios that are related to OTL.
EDB OCL Connector is certified with the following OTL features:
- Connect, disconnect, commit, and roll back using
otl_connect
. - Constant SQL statements using the static function
otl_cursor::direct_exec
. (A SQL statement is constant if it doesn't have any bind variables.) It includes most DDL statements likeCREATE TABLE
andCREATE PROCEDURE/FUNCTION
. - SQL statements with bind variable using
otl_stream class
. It includes most DML statements likeSELECT
,UPDATE
,DELETE
,INSERT
, andPROCEDURE/FUNCTION
calls. - Date/Time data types using
otl_datetime
. - Raw/Long Raw data types using
otl_long_string
. - Ref cursors using
otl_refcur_stream
.
Connect and log in
This example initializes OCL and connects to a database using a tnsnames.ora
-based connection string:
otl_connect db; otl_connect::otl_initialize(); db.rlogon("enterprisedb/edb@EDBX"); if(db.connected) cout<<"Connected to Database"<<endl;
CREATE TABLE, INSERT, and SELECT
This example uses otl_cursor::direct_exec
to create a table and then insert a row in the table. You can then use otl_stream
to retrieve the inserted row.
char* createstmt = "create table testtable(c1 VARCHAR2(15), c2 DATE)"; char* insertstmt = "insert into testtable values('test_data123', " "TO_DATE('2005-12-31 23:59:59','YYYY-MM-DD HH24:MI:SS'))"; char* selectstmt = "select c1, c2 from testtable"; otl_cursor::direct_exec(db, createstmt); // create table db.commit(); otl_cursor::direct_exec(db, insertstmt); // Insert data. char strData[100]; otl_datetime dtData; otl_stream otlCur(50, sqlstmnt, db); while (!otlCur.eof()) { otlCur >> strData >> dtData; cout << "Retrieved Value: " << data << endl; cout << "Retrieved Value: " << data.month << "/" << data.day << "/" << data.year << " " << data.hour << ":" << data.minute << ":" << data.second << endl; }
UPDATE
This example uses bind parameters in an UPDATE
statement: