1樓:匿名使用者
要寫事件過程用窗體上輸入的資料去查詢資料庫,查到了就隱藏自己,開啟另一個窗體。
先引用using system.data.sqlclient;
private void 登陸按鈕_click(自帶變數)
//嘗試開啟連線
catch //捕捉異常
finnly //最終過程還是關閉連線,得到資料集就不需要再開啟了
dataset ds=new dataset(); //使用資料整合員dataset物件
string sql="select * from 使用者表 where 使用者名稱='"+this.輸使用者名稱的文字框.text.
trim()+"' and 密碼='"+this.輸密碼文字框.text.
trim()+"'"; //儲存sql語句用窗體去找資料庫
sqldataadapter sda=new sqldataadapter(**n,sql); //呼叫資料容器讀取資料
sda.fill(ds); //把資料讀到資料集合
if(ds.tables[0].rows.count==0)
else
}到此就一個簡單的登陸事件過程
2樓:
留下郵箱,傳送原始碼給你
3樓:匿名使用者
這個要學習 sql 知識,不是點滑鼠就可以的。
怎麼用c#做一個登入介面來連線資料庫啊 15
4樓:匿名使用者
什麼意思?是建一個登入介面還是隻是如何在winform中連線
資料庫?
一般來講:
1、匯入名稱空間
using system.data.sqlclient; //連線sqlserver 資料庫專用
2、建立連線
sqlconnection lo_conn = new sqlconnection("server=伺服器名字或ip;database=資料庫名字;uid=使用者名稱;pwd=密碼");
3、開啟連線,第2步並沒有真正連線資料庫
lo_conn.open(); //真正與資料庫連線
4、向資料庫傳送sql命令要使用sql***mand:
sql***mand lo_cmd = new sql***mand(); //建立命令物件
lo_cmd.***mandtext = "這裡是sql語句"; //寫sql語句
lo_cmd.connection = lo_con; //指定連線物件,即上面建立的
5、處理sql命令或返回結果集
lo_cmd.executenonquery(); //這個僅僅執行sql命令,不返回結果集,實用於建表、批量更新等不需要返回結果的操作。
sqldatareader lo_reader = lo_cmd.executereader();//返回結果集
6、以資料集的方式反回結果集
sqldataadapter dbadapter = new sqldataadapter(lo_cmd); //注意與上面的區分開
dataset ds = new dataset(); //建立資料集物件
dbadapter.fill(ds); //用返回的結果集填充資料集,這個資料集可以被能運算元據的控制元件databind,其它的就自己發揮了吧
7、關閉連線
lo_conn.close();
5樓:
連什麼資料庫也不說,
我只能說拖拖控制元件就行了
怎樣做一個登陸介面 與資料庫連線(我用vs2005c#語言 sqlsever2005)
6樓:
1.開啟vs 新建專案-》windows 窗體應用程式 可以看到form1的窗體
2.從左邊的 工具箱拖 2個lable控制元件 選擇一個右擊->屬性 在屬性視窗 找到text 設定 成使用者名稱,另一個也是一樣的 不過把text 設定成密碼
3.從工具箱 拖 2個 textbox 控制元件 做使用者名稱和密碼輸入框
4.拖一個button 控制元件 右擊->屬性 在屬性視窗 找到text 設定成登陸 然後滑鼠雙擊button控制元件 就會跳到 寫**的介面,並且當前滑鼠焦點 在button 事件裡面。
5.在最頂上引用名稱空間
using system.data.sqlclient;
6.在button事件中寫入一下**
//連線字串:
string connectionstring = "server=.;uid=資料庫登陸名;pwd=資料庫登陸密碼;database=要連線的資料庫庫名;";
//建立connection連線物件
datatable dt = new datatable();
sqlconnection myconnection = new sqlconnection(connectionstring);
trycatch (exception ex)
finally
}if(dt.rows.count>1)
else
c#做的登陸介面,怎麼連線sqlserver資料庫?(visual studio環境下)
7樓:匿名使用者
要寫事件過程用窗體上輸入的資料去查詢資料庫,查到了就隱藏自己,開啟另一個窗體。
先引用using system.data.sqlclient;
private void 登陸按鈕_click(自帶變數)
//嘗試開啟連線
catch //捕捉異常
finnly //最終過程還是關閉連線,得到資料集就不需要再開啟了
dataset ds=new dataset(); //使用資料整合員dataset物件
string sql="select * from 使用者表 where 使用者名稱='"+this.輸使用者名稱的文字框.text.
trim()+"' and 密碼='"+this.輸密碼文字框.text.
trim()+"'"; //儲存sql語句用窗體去找資料庫
sqldataadapter sda=new sqldataadapter(**n,sql); //呼叫資料容器讀取資料
sda.fill(ds); //把資料讀到資料集合
if(ds.tables[0].rows.count==0)
else
}到此就一個簡單的登陸事件過程
c#與sql做登陸介面怎麼連線?
8樓:千鋒教育
string constr = "server=你要連的資料庫ip;user id=登陸名;pwd=登陸密碼;database=資料庫名";
sqlconnection con = new sqlconnection(constr);
以上為連線**,具體登陸介面的相關業務**因業務不同,所以**要根據具體業務來編寫
9樓:車晟
system.data.sqlclient.
sqlconnection sqlcon1=new system.data.sqlclient.
sqlconnection("database=....");
system.data.sqlclient.
sql***mand sqlcmd1=new system.data.sqlclient.
sql***mand("select * from table where username=@username and pwd=@pwd",sqlcon1);
if(convert.toint(sqlcmd1.executescalar()>0)
c#windows應用程式登陸介面如何連線到sql資料庫驗證使用者名稱和使用者密碼,我要詳細**……
10樓:匿名使用者
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.data.sqlclient;
using system.data;
namespace myktv
return connection;}}
public void openconnection()else if (connection.state == connectionstate.broken)
}public void closeconnection()}}}
11樓:蒔栩
string connstr = @"data source=.\sqlexpress;initial catalog=資料庫名;integrated security=true";
sqlconnection conn = new sqlconnection(connstr);
string sql = "select * from admin where username='" + user + "' and pwd='" + pwd + "'";
sql***mand cmd = new sql***mand(sql, conn);
int x=cmd.executenonquery();
if (x > 0)
else
用JSP做註冊和登陸介面,做好後其中的資料庫怎麼設計
登入的驗證思路是這樣的 你輸入使用者名稱和密碼後點選按鈕,這時你要把使用者名稱和密碼一起帶入資料庫查詢,如果能查出資料就說明登入成功,否則失敗。c 做的登陸介面,怎麼連線sqlserver資料庫?visual studio環境下 急求用jsp和資料庫連線寫一個網頁登陸註冊 表單裡的資料baisubm...
電腦進入不了登陸介面是什麼原因?
原因有兩種 1 系統崩潰了,這種情況會在開機的時候的字 當然不用理會這些字是什麼 可以重灌系統或者還原原來備份好的系統即可。2 硬體問題 記憶體條鬆動是最常的事,只要檢查一下,重新裝上就得了,也有可能是硬碟的資料線鬆了,把它弄緊行了。這就是中毒引起的,開始時出現這種情況可以用 ctrl alt de...
VS2019做網頁登陸介面連結資料庫,50分懸賞,滿意追加
這是頁面的 資料庫連結的 不在這裡,在它背後的.cs檔案裡,或者在vs裡的資料庫資源管理器,然後在設計檢視裡繫結到表上。幫你找了一點資料,你仔細看一下就明白了。資料庫連結的類 using system.diagnostics using system.io using system.web usin...