Programming Multiplayer Game – 使用Mysql++操作MySQL資料庫

來源:互聯網
上載者:User
文章目錄
  • 編譯Mysql++
  •  
  • 使用mysql++

本文簡要介紹了怎麼樣使用Mysql++庫來操作MySQL資料庫。
Mysql++是官方發布的、一個為MySQL設計的C++語言的API,這個API的作用是使工作更加簡單且容易。你可以從這裡瞭解以及下載到Mysql++庫的詳情。在使用mysql++庫之前,請確保MySQL資料庫伺服器已經安裝成功。因為編譯mysql++的過程需要MySQL資料庫的include目錄和lib目錄。

本文使用的Mysql++的版本為: mysql++-3.1.0.tar.gz

編譯Mysql++

下載到mysql++庫壓縮包之後,解壓到本地目錄。用vs2008開啟解壓目錄下vc2008\mysql++.sln檔案。設定項目mysql,使其include本地MySQL安裝目錄下的include目錄; 其庫目錄包含本地MySQL安裝目錄下的lib目錄,如下所示:

 

 使用mysql++

在應用程式中使用mysql++庫時,需要正確設定項目的include和lib包含路徑。運行程式之前,要確保資料庫伺服器已經成功啟動。

與資料庫建立串連

串連的資料庫名為gamedata, 位於本機,使用者名稱為root,密碼為空白

    // -> Create a connection to the database    Connection con("gamedata","127.0.0.1", "root", "");
 顯示表中的內容

資料庫操作的執行都是調用Query對象。如果當前的Query對象的操作有返回結果,則應該擷取返回結果;否則直接執行SQL語句即可。

void DisplayTable(Connection& con){    // -> Create a query object that is bound to our connection    Query query = con.query();    // -> Assign the query to that object    query << "SELECT * FROM playerdata";    // -> Store the results from the query    StoreQueryResult res = query.store();    // -> Display the results to the console    // -> Show the field headings    cout.setf(ios::left);    cout << setw(10) << "username"        << setw(10) << "password"        << setw(10) << "age" << endl;    StoreQueryResult::iterator _it = res.begin();    // The Result class has a read-only random access iterator    for (; _it != res.end(); _it++)    {        Row& row = *_it;        cout << setw(10) << row["username"]        << setw(10) << row["password"]        << setw(10) << row["age"] << endl;    }}
修改表中的某行
void UpdateRowByUserName(Connection& con, const char* username){    Query query = con.query();    query << "UPDATE playerdata SET password='111111' WHERE username='" << username << "';";    query.execute();}
向表中插入一行
void InsertRow(Connection& con, const char* username, const char* password, int age){    Query query = con.query();    query << "INSERT INTO playerdata VALUES(0, '" << username << "', '"            << password << "', " << age << ");";    query.execute();}

本文源碼可以從這裡下載。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.