实验四 数据库编程.doc
《实验四 数据库编程.doc》由会员分享,可在线阅读,更多相关《实验四 数据库编程.doc(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、实验四 数据库编程一、 实验目的和要求1. 掌握存储过程的创建和使用2. 掌握触发器的创建和使用3. 掌握使用VB.NET访问数据库的方法二、 实验内容1、 创建和执行存储过程a) 创建一个cust_select存储过程,执行该存储过程将从表中根据客户的cid检索客户的姓名、所在城市和折扣率。USE CAPGOCREATE PROCEDURE cust_select(customer_id char(4),customer_name varchar(13) OUTPUT, customer_city varchar(20) OUTPUT,customer_discnt real OUTPUT)
2、ASIF EXISTS(SELECT * FROM customers where cid=customer_id)SELECT customer_name=cname,customer_city=city,customer_discnt=discnt from customers where cid=customer_idELSE SELECT Person not found!b) 执行以上定义的cust_select存储过程DECLARE cust_name varchar(13)DECLARE cust_city varchar(20) DECLARE discnt realEXECU
3、TE cust_select c001, cust_name output,cust_city output,discnt outputSELECT customer_name,cust_name,city,cust_city ,discount,discnt 问题:若要检索其他客户的信息,使用存储过程如何实现?c) 编写一个存储过程,向customers表中插入一条记录,并显示提示信息。d) 编写一个存储过程,根据用户输入的代理商的aid统计该代理商的总销售额。2、 创建和使用触发器a) 在CAP数据库中的agents表上建立一个DELETE触发器agent_tri1(使用CREATE TR
4、IGGER语句创建),使得在删除表agents中的记录的同时,自动检查orders表中是否有与该代理商相关的记录,如果存在相关记录,则取消删除。USE CAPGOCREATE TRIGGER agent_tri1ON agentsFOR DELETEASdeclare AgentID char(3)select AgentID= (select aid from deleted)IF (SELECT COUNT(*) FROM orders where orders.aid=AgentID)0BEGINDECLARE ErrorMessage varchar(100)set ErrorMess
5、age=You can not delete the agent information with the order record.+char(13)+The transaction will be cancelledRAISERROR(ErrorMessage,10,1)ROLLBACK TRANSACTIONENDb) 在查询窗口中输入以下语句验证触发器DELETE FROM agents WHERE aid=a01c) 在agents表中添加一条新纪录(a08,Rose,New York,8),再在查询窗口中输入以下语句验证DELETE FROM agents WHERE aid=a0
6、8d) 使用系统存储过程sp_helptext查看触发器agent_tril定义的信息USE CAPEXEC sp_helptext agent_tri1GO3、 使用VB.NET访问数据库a) 编程实现与customers表的连接操作步骤: 新建VB.Net项目,设计好界面。 编写代码。双击窗体空白处,进入代码编辑窗口。编写代码时,可按以下思路进行编写。导入命名空间定义所需变量(数据连接、数据适配器、数据集、连接字符串、SQL语句字符串)给变量赋值数据填充将组合框和数据集联系起来。代码如下:Imports System.Data.SqlClient 导入命名空间Public Class Fo
7、rm1 Inherits System.Windows.Forms.Form Dim SqlConnection1 As New SqlConnection 定义连接变量 Dim DataSet1 As DataSet = New DataSet 定义数据集变量 Dim SqlAdapater1 As SqlDataAdapter 定义数据适配器变量 Dim StrSql As String 定义SQL语句字符串变量 Dim StrCon As String 定义连接字符串变量密码改为本机sa密码 Private Sub Form1_Load(ByVal sender As System.Ob
8、ject, ByVal e As System.EventArgs) Handles MyBase.Load 给连接字符串变量赋值 StrCon = Server=(local);database=CAP;User ID=sa;PWD=123 Me.SqlConnection1.ConnectionString = StrCon 给SQL语句字符串变量赋值 StrSql = select * from customers 给数据适配器变量赋值 SqlAdapater1 = New SqlDataAdapter(StrSql, Me.SqlConnection1) 数据填充 SqlAdapate
9、r1.Fill(Me.DataSet1, customers) 建立数据集数据与组合框的联系 Me.ComboBox1.DataSource = Me.DataSet1.Tables(customers) Me.ComboBox1.DisplayMember = cname End SubEnd Class 执行程序。效果如图所示b) 编程实现操作步骤:TextBox1 新建VB.Net项目,设计好界面。ComboBox1ComboBox2Button1TextBox3TextBox2 编写代码。imports system.data.SqlClientPublic Class Form1 I
10、nherits System.Windows.Forms.Form Dim SqlConnection1 As New SqlConnection 定义连接变量 Dim DataSet1 As DataSet = New DataSet 定义数据集变量 Dim SqlAdapater1 As SqlDataAdapter 定义数据适配器变量 Dim StrSql As String 定义SQL语句字符串变量 Dim StrCon As String Dim SqlCmd As New SqlCommand Private Sub Form1_Load(ByVal sender As Syste
11、m.Object, ByVal e As System.EventArgs) Handles MyBase.Load 给连接字符串变量赋值 StrCon = Server=(local);database=CAP;User ID=sa;PWD=123 Me.SqlConnection1.ConnectionString = StrCon 给SQL语句字符串变量赋值 StrSql = select * from customers 给数据适配器变量赋值 SqlAdapater1 = New SqlDataAdapter(StrSql, Me.SqlConnection1) 数据填充 SqlAda
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 实验四 数据库编程 实验 数据库 编程
限制150内