請問用c 如何連線mysql 資料庫 是連線網上的mysq

2021-05-12 20:20:51 字數 849 閱讀 5074

1樓:匿名使用者

使用mysql開發包,在mysql安裝目錄裡面有一個include目錄。裡面包含了需要的c++標頭檔案

主要包含

#include

#include //根據自己目錄設定mysql標頭檔案

mysql mysql;

std::string db_host = "127.0.0.1";//mysql伺服器地址

std::string db_user = "root";//使用者名稱

std::string db_pwd = "rootpwd";//密碼

std::string db_name = "test_db";//訪問資料庫名

mysql_init(&mysql);//初始化mysql物件

c_str(), db_pwd.c_str(), db_name.c_str(), 3306, null, 0))//連線mysql伺服器

設定中文字符集

db_host就是mysql伺服器ip地址,字串,c++連線mysql伺服器其實不分本地或者遠端的,的都是按照連線伺服器來的,本地伺服器的就是127.0.0.1

具體開發的手冊,參考mysql官方開發文件

2樓:匿名使用者

使用sqlapi吧,這是個第三方庫,網上有使用方法的。你去找一下吧,不然要自己寫好多東西的。

c如何連線其他資料庫,如mysql或者

3 資料庫操作 insertmysql.cs 如下 using system using system.collections using system.configuration using mysql.data using mysql.data.mysqlclient using system....

php連線mysql資料庫問題,mysql資料庫怎麼連線資料庫

public listpagelisttwo int currentpage,int showrows connection con null preparedstatement ps null resultset rs null arraylistresultlist new arraylist ...

PHP如何遠端連線到MySQL資料庫

這個在你的專案裡面配置一下就好了。比如我使用thinkphp框架,在配置檔案裡面有這麼一行 db host localhost 這裡配置的就是要訪問的資料庫伺服器,我本地使用就用localhost,如果你是在伺服器上的,就寫你伺服器的 或者是ip就好了。任何乙個php框架或者不用框架都有這麼乙個設定...