mysql使用總結(C )

2021-10-01 20:09:55 字數 790 閱讀 7259

當前使用環境是在mysql.data下的,mysql.data包使用nuget獲取

1.連線mysql資料庫:

配置檔案**.config:

配置連線mysql資料庫字串(從配置檔案中讀取):

readonly string mysql_connect_string = configurationmanager.connectionstrings["mysql"].connectionstring;
2.進行連線並查詢返回結果:

string sql = $"select t_fund_keyword.fundid as code,t_fund_keyword.keyword as name,t_fund_keyword.cnt as count from t_fund_keyword " +filter+" limit 100";

using (var con = new mysqlconnection(mysql_connect_string))

//對應的staticsentity

public class staticsentity

public string name

public int count

}

3.遍歷reader

using (var con = new mysqlconnection(mysql_connect_string))

}

更新mysql

Mysql使用總結

畢業設計的程式主體編好了,執行少量資料沒有任何問題,一旦資料量增加到22w,執行時間就長得令人髮指。導師建議,程式中盡可能地減少與資料庫互動的次數,盡可能地把工作丟給資料庫完成。在這一思想的指導下,我三天大幅修改程式,部分 幾乎是翻新了一遍。總的來說,執行時間確實得到了很大的改善,把這三天的經驗總結...

MySQL使用總結

預設情況下是否區分大小寫 影響表名 欄位名 varchar欄位內容 使用show variables like table names 檢視lower case table names的值,0代表區分,1代表不區分。設定為不區分時,實際建立時表名將全部儲存為小寫字母,欄位名為原樣,字段內容為原樣。a...

mysql日常使用總結

1.在mysql中 double型別字段 不能指定長度,如 alter table pur purchase item config history change column safe stock day safe stock day double 20 not null comment 安全水位...