C++類庫:OTL串連MySQL ODBC資料庫(insert, update, select)

來源:互聯網
上載者:User

標籤:

一. 簡介

OTL是一個純C++的通用資料庫連接模板庫,可以支援各種當下流行的資料庫,如Oracle,Sybase, MySQL, PostgreSQL, EnterpriseDB, SQLite,  MS ACCESS, Firebird等等.它是一個跨平台類庫,在MS Windows, Linux/Unix/Mac OS X 都可以使用。

OTL使用簡單, 只要標頭檔中包含有: #include "otlv4.h" 就可,實際上整個OTL就一個.H的檔案,使用起來極為的方便。

我的下載空間:

代碼:http://download.csdn.net/detail/u013354805/9057229

文檔:http://download.csdn.net/detail/u013354805/9057243

案例:http://download.csdn.net/detail/u013354805/9057273

官方:http://otl.sourceforge.net/

二. 使用方法:

1. 首先指定要串連的資料庫類型,OTL用宏定義來指定要串連的資料庫類型。OTL會根據這個宏定義來初始化資料庫連接的環境。

相關的宏定義列表:  http://otl.sourceforge.net/otl3_compile.htm

如: #define OTL_ODBC_MYSQL表示串連ODBC MySQL資料庫。

2、案例:

1) 指定串連的資料庫類型:

<span style="font-size:14px;">#define OTL_ODBC_MYSQL // 指定串連的資料庫類型</span>

2) 匯入OTL 4 標頭檔

<span style="font-size:14px;">#include <otlv4.h> // include the OTL 4 header file</span>


3) 定義資料庫執行個體:

<span style="font-size:14px;">otl_connect db; // 定義資料庫執行個體</span>

4) 初始化ODBC環境:

<span style="font-size:14px;">otl_connect::otl_initialize();</span>

5) 串連ODBC:

<span style="font-size:14px;">db.rlogon("UID=scott;PWD=tiger;DSN=mysql"); // connect to ODBC</span>

6). 刪除表格:

<span style="font-size:14px;">  otl_cursor::direct_exec   (    db,    "drop table test_tab",    otl_exception::disabled // disable OTL exceptions   ); // drop table</span>

7). 建立表格:

<span style="font-size:14px;">  otl_cursor::direct_exec   (    db,    "create table test_tab(f1 int, f2 varchar(30))"    );  // create table</span>

8). Insert 語句:

<span style="font-size:14px;"> // insert rows into table void insert(){  otl_stream o(1, // buffer size should be == 1 always on INSERT              "insert into test_tab values(:f1<int>,:f2<char[31]>)",                  // SQL statement              db // connect object             ); char tmp[32]; for(int i=1;i<=100;++i) {  sprintf(tmp,"Name%d",i);  o<<i<<tmp; }}</span>


9). Update 語句:

<span style="font-size:14px;">// update row data into tablevoid update(const int af1){  otl_stream o(1, // buffer size should be == 1 always on UPDATE  "UPDATE test_tab "  "   SET f2=:f2<char[31]> "  " WHERE f1=:f1<int>",  // UPDATE statement  db // connect object ); o<<"Name changed"<<af1; o<<otl_null()<<af1+1; // set f2 to NULL}</span>

10). Select語句:

<span style="font-size:14px;">// MyODBC does not allow any input bind variables in the WHERE clause// in a SELECT statement.// Therefore, the SELECT statement has to be generated literally.void select(const int af1){  char stmbuf[1024]; sprintf(stmbuf,         "select * from test_tab where f1>=%d and f1<=%d*2",         af1,         af1        ); otl_stream i(50, // buffer size may be > 1              stmbuf, // SELECT statement              db // connect object             );    // create select stream  int f1; char f2[31]; while(!i.eof()) { // while not end-of-data  i>>f1;  cout<<"f1="<<f1<<", f2=";  i>>f2;  if(i.is_null())   cout<<"NULL";  else   cout<<f2;  cout<<endl; }}</span>

11). 斷開ODBC:

<span style="font-size:14px;"> db.logoff(); // disconnect from ODBC</span>

12). 案例:

<span style="font-size:14px;">int main(){ otl_connect::otl_initialize(); // initialize ODBC environment try {  db.rlogon("UID=scott;PWD=tiger;DSN=mysql"); // connect to ODBC  //  db.rlogon("scott/[email protected]"); // connect to ODBC, alternative format                                     // of connect string   otl_cursor::direct_exec   (    db,    "drop table test_tab",    otl_exception::disabled // disable OTL exceptions   ); // drop table  otl_cursor::direct_exec   (    db,    "create table test_tab(f1 int, f2 varchar(30))"    );  // create table  insert(); // insert records into the table  update(10); // update records in the table  select(8); // select records from the table } catch(otl_exception& p) { // intercept OTL exceptions  cerr<<p.msg<<endl; // print out error message  cerr<<p.stm_text<<endl; // print out SQL that caused the error  cerr<<p.sqlstate<<endl; // print out SQLSTATE message  cerr<<p.var_info<<endl; // print out the variable that caused the error } db.logoff(); // disconnect from ODBC return 0;}</span>

13). 運行結果:

<span style="font-size:14px;">Outputf1=8, f2=Name8f1=9, f2=Name9f1=10, f2=Name changedf1=11, f2=NULLf1=12, f2=Name12f1=13, f2=Name13f1=14, f2=Name14f1=15, f2=Name15f1=16, f2=Name16</span>

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

C++類庫:OTL串連MySQL ODBC資料庫(insert, update, select)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.