1樓:電子收據e收據
1全部你的表中肯定有主鍵吧??(比如bookid...),然後你選中一橫,在button下寫如下類似**:
先建立連線物件:conn(你肯定有)sqlconnection conn = new sqlconnection("連線的字串");
建立操作物件:cmd(你肯定會) sqlcommand cmd = new sqlcommand("update books set 狀態=你要的狀態 where bookid =你選中的bookid ");
cmd.executenonquery();//執行語句希望你能看懂。。。
2樓:人在望京
設定button的事件 執行sql語句
3樓:愛2我2別2走
using system;
using system.data;
using system.configuration;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.data.sqlclient;
public partial class _default : system.web.ui.page
}protected void gridview1_rowediting(object sender, gridviewediteventargs e)
//刪除
protected void gridview1_rowdeleting(object sender, gridviewdeleteeventargs e)
//更新
protected void gridview1_rowupdating(object sender, gridviewupdateeventargs e)
//取消
protected void gridview1_rowcancelingedit(object sender, gridviewcancelediteventargs e)
//繫結
public void bind()
;//主鍵
gridview1.databind();
sqlcon.close();}}
前臺主要**:
... ...
這個是gridvew 更改刪除的**,你可以參照一下,看看對你有幫助麼~
c# + sql server 專案實訓誰能發幾個簡單的來做一下
4樓:匿名使用者
這是我以前的訓練專案 你看一下吧
題目;學生資訊管理系統設計
學生資訊包括;學號,姓名,年齡,性別,出生年月,地址,**,e-main等.試設計一學生資訊管理系統,使之提供以下功能:
1:系統以選單方式工作.
2:學生資訊錄入功能(學生資訊用檔案儲存或sql指令碼儲存)-----輸入
3:學生資訊瀏覽功能---輸出
4:學生資訊查詢功能------演算法
按學號查詢;
按姓名查詢;
5:學生資訊的刪除與修改(可選項)
設計報告格式:
1:設計目的.
2:總體設計(程式設計組成框圖,流程圖)
3,詳細設計(模式功能說明(如函式功能,入口及出口引數說明,函式呼叫關係描述等)).
4.除錯與測試:除錯方法,測試結果的分析與討論,測試過程中遇到的主要問題及採取的解決措施.
5:源程式清單和執行結果:清單中應有足夠的註釋
5樓:匿名使用者
你自己隨便做個圖書館管理系統或者什麼學生管理系統,倉庫管理系統之類的就可以了啊!
c#中寫sql語句的一個問題
6樓:匿名使用者
從你發的**上看沒有任何問題,你再看一下其它地方吧,不是這裡的問題
7樓:大神神風
你可以直接這樣寫:
string.format("……………… where id <> '10000'");
關於c#與sql伺服器連線問題
8樓:同一種調調
protected sqlconnection myconnection=new sqlconnection();//先宣告,或在page_load中寫也可
private void page_load(object sender, system.eventargs e)
[web窗體設計器生成的**]如用事件button1_click的話就是:
private void button1_click(objectsender,system.eventargs e)
//其中scores是自己起的暫時填入資料集的名稱
資料庫中也要在登入裡做一些設定:點選在安全性中的登入,在你設的uid名稱點右鍵"屬性",設定預設的資料庫,還有pwd密碼
以上的步驟即可實現
9樓:
sqlconnection m_sqlconn=new sqlconnection();
m_sqlconn.connectionstring="data source=[ip地址];initial catalog=[資料庫名稱];user id=[使用者名稱稱];password=[使用者密碼];initial catalog=[預設訪問資料庫]";
m_sqlconn.open();
p.s.具體連線字串可以自行修改。
10樓:拖鞋一隻
首先建立連線字串,如 sqlconnection connstr =new ^^^^^
然後connstr.open()
便可以了
關於C 的簡單問題,關於C 的一個簡單問題
include using namespace std class tdate void display void getyear void getmonth void getday void tdate display void tdate getmonth void tdate getday i...
關於c語言的幾個問題,關於C語言的幾個問題?
1 不用詳細看,參見 2 getch 從標準輸入裝置 鍵盤 讀入一個字元,不回顯在顯示器上.例碼 include include include int main getche 從標準輸入裝置 鍵盤 讀入一個字元,並回顯在顯示器上.例碼 include include include int mai...
c語言簡單的一個問題,c語言的幾個問題
第一個x y是假,所以是0.而z y y x都是真,所以與完後為真,是1.1 z y x 計算機是從左往右計算的z y成立反回值為1,不成立為零。在與後面的比較。1 以為z y為真結果為1 然後比較1 z 結果為假 所以為假 就是0 z y為真 y z為真 真與真還是真 所以為1 所以是 d2 首先...