程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 一個Mysql C API小型封裝_MySQL教程

一個Mysql C API小型封裝_MySQL教程

編輯:關於MYSQL數據庫

主要用於維護C結構的查詢和返回。


#include typedef        std::string        string;struct        mysql_parm{        string        host;        string        user;        string        passWord;        string        database;        string        unixsock;};class        DBSTMT;class        DBMysql;class        DBSTMT{        DBSTMT(const DBSTMT&);        DBSTMT&        Operator=(const DBSTMT&);        MYSQL_STMT*        stmt_;public:        DBSTMT(pcsz_t        query,DBMysql&        mysql);        void        execute(){                if(mysql_stmt_execute(stmt_))                        throw        mysql_stmt_error(stmt_);        }        void        execute(MYSQL_BIND* bind){                if(mysql_stmt_execute(stmt_))                        throw        mysql_stmt_error(stmt_);                if(mysql_stmt_bind_result(stmt_,bind)){                        throw        mysql_stmt_error(stmt_);                }                if(mysql_stmt_store_result(stmt_))                        throw        mysql_stmt_error(stmt_);        }        //void        execute(){        //        if(mysql_stmt_execute(stmt_))        //                throw        MySQL_stmt_error(stmt_);        /
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved