文章目錄
本文簡要介紹了怎麼樣使用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();}
本文源碼可以從這裡下載。