1樓:匿名使用者
1.建立連線字串connstr
2.建立sql連線物件conn
3.建立sql命令物件comm
4.開啟conn連線
5.建立sql讀取器物件,能過comm的executereader()獲取結果並賦值與物件
2樓:匿名使用者
using system;
using system.collections.generic;
using system.linq;
using system.web;
using system.data;
using system.data.sqlclient;
using system.configuration;
//////dbhelper 的摘要說明
///public class dbhelper
else if (connection.state == system.data.connectionstate.closed)
else if (connection.state == system.data.connectionstate.broken)
return connection;}}
//增刪改
public static int executecommand(string safesql)
//增刪改過載,帶引數
public static int executecommand(string sql, params sqlparameter values)
//獲得第一行第一列,一般用來和聚合函式配合
public static int getscalar(string safesql)
public static int getscalar(string sql, params sqlparameter values)
//獲得閱讀器
public static sqldatareader getreader(string safesql)
public static sqldatareader getreader(string sql, params sqlparameter values)
//獲得資料表
public static datatable getdataset(string safesql)
public static datatable getdataset(string sql, params sqlparameter values)
}通用類
求c#winform 資料庫類(連線和增刪改查)和在視窗中的呼叫**
3樓:匿名使用者
新增引用
using system.data;
using system.data.sqlclient;
定義資料庫
4樓:
c# 中分為三層,在資料訪問層中寫增刪查改的**和專門連線資料庫的一個類寫connection;在視窗中呼叫的**一般寫在表示層。
5樓:蒲仕龍
喔,這個沒有什麼的哈,就是一個連線到資料庫,然後就是sql語句了哈
winform登陸視窗怎麼連線資料庫
6樓:
查詢資料出來,新增到下拉選單框裡面就是了哈!!
如果你不知道下拉選單框資料怎麼新增的話,或者如何連線資料庫的話那你就別追問了哈!!
因為你連基本的都不會直接上來就搞這個東西,我覺得我就沒必要回答了!!
等其他人來回答吧!!
求問,關於winform程式用什麼來連線遠端資料庫
如何用C語言連線資料庫,c 中連線資料庫的類怎麼寫呀
要新建一個類 需要的時候呼叫 建立sqlconection物件con sqlconnection con con new sqlconnection 定義一個字串 string strcon 然後給con物件的連線字串connectionstring賦值 con.connectionstring s...
C使用ip連線資料庫出錯,sql server
將圖中標註的ip地址改為你的ip地址.server 192.168.1.7 database database uid sa pwd 123456 我的字串就是這樣的.不過我看你的也差不多哈,你試試在mssql的管理器裡面,用這個地址和使用者名稱密碼看能不能接入.using system using...
SQL sever 2019怎樣連線資料庫啊?有沒有用於測試的資料庫啊
你描述的不詳細啊 你是要程式連線資料庫 還是sql2008 附加資料庫?進行連線.如果是sql連線 你用windows模式登入 隨便弄個資料庫就可以了 一般有預設的系統資料庫 mather 你可以拿表出來測試 但是別修改資料就行 sql server如何連線資料庫?sql server 2008本來...