public static string getsqlconnectionstring()
//adapter調整,查詢操作,返回datatable
public static datatable executedatatable(string sql, params sqlparameter parameters)
}//適合增刪改操作,返回影響條數
public static int executenonquery(string sql, params sqlparameter parameters)
catch (exception ex)
finally}}
}//查詢操作,返回查詢結果中的第一行第一列的值
public static object executescalar(string sql, params sqlparameter parameters)
catch (exception ex)
finally}}
}//3.執行查詢多行多列的資料的方法:executereader
public static sqldatareader executereader(string sqltext, params sqlparameter parameters)
}
SQL資料庫的離線與聯機操作
online 可對資料庫進行訪問 offline 資料庫無法使用 1 使用查詢語句 select state desc from sysdatabases where name 資料庫名 2 使用databasepropertyex database,property 函式 select datab...
VS內建SQL資料庫中文亂碼
由於目前尚未安裝資料庫,所以使用的是vs自帶的資料庫進行sql語句的練習,但是在新增中文資料時,會出現?亂碼,於是上網找了解決方案,原方案新增了區分大小寫,導致資料庫輸入錯誤,於是修正了原方案的錯誤。使得可以直接使用。declare database nvarchar 100 declare tmp...
SQL 檔案匯入資料庫
1 首先通過 xshell 連線資料庫伺服器,執行命令 mysql u root p 命令,按照提示輸入密碼,連線上資料庫 2 在連線終端上執行命令 create database jd model 3 將準備好的資料庫檔案 t user.sql 檔案通過 xftp 工具,上傳至 root 目錄下,...