版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、實驗三 嵌入式SQL數(shù)據(jù)編輯一、實驗目的(1)了解嵌入式SQL的使用方法。(2)設計用戶界面,能對數(shù)據(jù)表進行添加、刪除。二、實驗內(nèi)容設計一個應用程序,實現(xiàn)對教學管理數(shù)據(jù)庫中所選定的表進行添加刪除。用戶界面如圖1所示。圖1 用戶界面完成以下功能:(1)在學號、姓名、性別、年齡等輸入框中輸入一個值,點擊添加按鈕,能夠添加相應記錄。點擊相應記錄的刪除按鈕,能夠刪除記錄。三、實驗指導(一)C# 嵌入式SQL語句1.在SQL Server中建立訪問數(shù)據(jù)庫的用戶stm;2. 在web.config中增加配置項:<connectionStrings><add name="conn
2、" connectionString="Data Source=;Initial Catalog=stm;User ID=stm;Password=" providerName=""/></connectionStrings>3繪制程序界面,如圖1所示,使用表格進行布局。(1) 添加數(shù)據(jù)源;(2) 編輯GradView,增加數(shù)據(jù)綁定列;(3) 編輯GradView,增加模板列,在模板列中添加“刪除”按鈕。4. 建立連接并執(zhí)行SQL命令string strconn = ConfigurationManager.
3、ConnectionStrings"conn".ConnectionString; SqlConnection con = new SqlConnection(strconn); con.Open();SqlCommand cm = new SqlCommand(sql, con); cm.ExecuteNonQuery(); con.Close();其中,sql是訪問數(shù)據(jù)庫的SQL語句,通過用戶填寫情況合成。實 驗 報 告實驗三 嵌入式SQL數(shù)據(jù)編輯裁剪線學 號: 姓名: 成績: 學院(系): 專業(yè): 班級: 一、實驗目的(1)了解嵌入式SQL的使用方法。(2)設計用戶界
4、面,能對數(shù)據(jù)表進行添加刪除。二、實驗內(nèi)容1設計一個客戶端數(shù)據(jù)編輯程序三、問題和要求1寫出程序運行主要界面2寫出主要事件及代碼<% Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><!DOCTYPE html PUBLIC "-/W3C/DTD XHTML 1.0 Transitional/EN" "/TR
5、/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="/1999/xhtml"><head id="Head1" runat="server"> <title>無標題頁</title> <style type="text/css"> #form1 height: 42px; width: 573px; </style></head><
6、body> <form id="form1" runat="server"> <table> <tr> <td> <asp:Label ID="學號Label1" runat="server" Text="學號:"></asp:Label> <asp:TextBox ID="學號TextBox0" runat="server"></asp:TextBox>
7、 </td> <td> <asp:Label ID="姓名Label1" runat="server" Text="姓名:"></asp:Label> <asp:TextBox ID="姓名TextBox0" runat="server"></asp:TextBox> </td> <td> <asp:Label ID="性別Label1" runat="server
8、" Text="性別:"></asp:Label> <asp:DropDownList ID="性別DropDownList1" runat="server"> <asp:ListItem></asp:ListItem> <asp:ListItem>男</asp:ListItem> <asp:ListItem>女</asp:ListItem> </asp:DropDownList> </td> <
9、;/tr> <tr> <td> <asp:Label ID="年齡從Label1" runat="server" Text="年齡:"></asp:Label> <asp:TextBox ID="年齡TextBox0" runat="server"></asp:TextBox> </td> <td> </td> <td align="right&q
10、uot;> <asp:Button ID="添加Button1" runat="server" Text="添加" onclick="添加Button1_Click" Width="55px" /> </td> </tr> </table> <asp:GridView ID="GridView1" runat="server" CellPadding="4" ForeColor
11、="#333333" GridLines="None" Width="455px" onrowdeleting="GridView1_RowDeleting"> <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" /> <RowStyle BackColor="#FFFBD6" ForeColor="#333333&qu
12、ot; /> <Columns> <asp:CommandField ShowDeleteButton="True" /> </Columns> <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" /> <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" Fo
13、reColor="Navy" /> <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" /> <AlternatingRowStyle BackColor="White" /> </asp:GridView> </form></body></html>using System;using System.Configuration;usi
14、ng System.Data;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;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 Page_Load(ob
15、ject sender, EventArgs e) sql_sel(); protected void 添加Button1_Click(object sender, EventArgs e) string xuehao = 學號TextBox0.Text; string xingming = 姓名TextBox0.Text; string xingbie = 性別DropDownList1.Text; string nianling = 年齡TextBox0.Text; string sql = "insert into s values('" + xuehao +
16、 "','" + xingming + "'," + Convert.ToInt32(nianling) + ",'" + xingbie + "')" sql_deal(sql); sql_sel(); void sql_sel() string strconn = ConfigurationManager.ConnectionStrings"conn".ConnectionString; /調(diào)用web.config中的conn 返回連接字符串 SqlC
17、onnection con = new SqlConnection(strconn); /進行連接 con.Open(); SqlDataAdapter da = new SqlDataAdapter("select * from s", con); /執(zhí)行sql語句,返回數(shù)據(jù) DataSet ds = new DataSet(); da.Fill(ds); /添加到數(shù)據(jù)集中 GridView1.DataSource = ds; /進行數(shù)據(jù)綁定 GridView1.DataBind(); con.Close(); /關閉數(shù)據(jù)庫連接 void sql_deal(string sql) string strconn = ConfigurationManager.ConnectionStrings"conn".ConnectionString; SqlConnection con = new SqlConnection(strconn); con.Open(); SqlCommand cm = new SqlCommand(sql,
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 班干部的培養(yǎng)與管理計劃
- 病歷室護士細致記錄病史
- 物流運輸行業(yè)美工工作經(jīng)驗分享
- 《慢性病危險因素》課件
- 家政公司前臺服務總結(jié)
- 《康復治療學總論》課件
- 2024年全球及中國混合云行業(yè)概述及特征調(diào)研報告
- 2021年廣東省惠州市公開招聘警務輔助人員輔警筆試自考題1卷含答案
- 2024年河南省鄭州市公開招聘警務輔助人員輔警筆試自考題1卷含答案
- 2023年安徽省銅陵市公開招聘警務輔助人員輔警筆試自考題1卷含答案
- 2024-2025學年小學道德與法治二年級下冊統(tǒng)編版(部編版)(2024)教學設計合集
- 4s店維修原廠協(xié)議書范文
- 高等數(shù)學教材(文科)
- 新高考背景下2025年高考思想政治一輪復習策略講座
- 初中音樂欣賞課型互動教學策略的構(gòu)建及實踐
- 2020-2021學年北京市西城區(qū)七年級(上)期末數(shù)學試卷(附答案詳解)
- DB13-T 5821-2023 預拌流態(tài)固化土回填技術規(guī)程
- 《新媒體運營》高職新媒體運營全套教學課件
- 第四單元“家鄉(xiāng)文化生活”系列教學設計 統(tǒng)編版高中語文必修上冊
- 2024年蘭州大學專業(yè)課《金融學》科目期末試卷B(有答案)
- 初中物理寶典
評論
0/150
提交評論