[linux]codeblocks開發mysql配置

風痕影默發表於2014-12-18

1、在安裝好mysql後,可以應該安裝必要的庫檔案

  $sudo apt-get install libmysqlclient-dev

2、將codeblocks與mysql的庫檔案連線起來

在codeblocks中的setting->complier->complier settint->otheroption中新增如下內容:

`mysql_config --cflags`(注意兩邊是波浪線)
-std=c11(c99標準)

在link setting->other link option中新增如下內容:

`mysql_config --libs`

3、此時就可以開發mysql了

相關文章