c 鏈結MySql資料庫

2021-10-08 07:10:23 字數 1650 閱讀 2355

用mysql建立乙個表,然後輸出到控制台!

首先電腦安裝完成mysql資料庫。

1.net start mysql80(mysql80 為自己的資料庫名稱)

接下來看到自己資料庫** #服務已啟動成功 **。

2.mysql -u root -p回車後

enter password:輸入自己的mysql資料庫密碼,回車。

可以看到已啟動資料庫。

3.建立資料庫

create database ljklxm;

4.使用它,當出現 database changed 就可以建立表。

use ljklxm;

然後建立資料表

create table ljklxm_l(

-> name varchar(50) not null,

-> age int not null,

-> number int not null,

-> primary key (name)

-> )charset=utf8;

你可以使用desc ljklxm_l;命令來檢視已建立好的表

5.插入資料

分三次插入三行資料

insert into ljklxm_l (name,age,number)

-> values

-> ("李","18"," 1001");

mysql> insert into ljklxm_l (name,age,number)

-> values

-> ("張","19"," 1002");

mysql> insert into ljklxm_l (name,age,number)

-> values

-> ("趙","20"," 1003");

6.你可以使用select *from ljklxm_l;命令來檢視成表;

console.writeline("連線已關閉");

C語言鏈結mysql資料庫

一 解釋一下函式功能和用法 1.mysql real connect 函式原型 mysql mysql real connect mysql mysql,const char host,const char user,const char passwd,const char db,unsigned ...

c 鏈結資料庫

c 連線access程式 using system.data using system.data.oledb string strconnection provider microsoft.jet.oledb.4.0 strconnection data source c begaspnetnort...

C語言鏈結mysql資料庫錯誤

一 編譯錯誤 eg 用gcc編譯出現如下的錯誤 test.c text 0x5e 對 mysql init 未定義的引用 但是在標頭檔案中已經 include 解決方法是 gcc xx.c lmysqlclient l usr lib64 mysql二 由 mysql config libs cfl...