> 데이터 베이스 > MySQL 튜토리얼 > Linux下通过C++语言代码来操作MySQL数据库_MySQL

Linux下通过C++语言代码来操作MySQL数据库_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
풀어 주다: 2016-06-01 14:02:53
원래의
1166명이 탐색했습니다.

C和C加加

    代码:

    #include
    #include
    #include "/usr/local/include/mysql/mysql.h"   //安装的mysql的头文件所在的位置
    using namespace std;
    string host="数据库地址";
    string user="用户名";

    string pwd="密码";
    string dbname="数据库";
    string sql="查询语句";
    unsigned int port=3309;#端口号
    int status;
    int main(){
    MYSQL *mysql;
    mysql=mysql_init(0);
    MYSQL_RES *result;
    MYSQL_ROW row;
    if(mysql_real_connect(mysql,host.c_str(),user.c_str(),pwd.c_str(),dbname.c_str(),port,NULL,CLIENT_FOUND_ROWS)==NULL){
    cout     return EXIT_FAILURE;
    }else{
    cout     }
    mysql_set_character_set(mysql,"gbk");
    status=mysql_query(mysql,sql.c_str());
    if(status !=0 ){
    cout     }
    cout     result=mysql_store_result(mysql);
    while(row=mysql_fetch_row(result)){
    cout     }
    mysql_free_result(result);
    mysql_close(mysql);
    }

    编译:

    g++ -o test test.cpp -lmysqlclient -I/usr/local/include/mysql/ -L/usr/local/lib/mysql

    后面的那些用来指定mysql安装的时候包含路径和库文件路径,具体与你机器上的mysql安装的路径有关。

 

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿