1. 存储过程
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
alter PROCEDURE GetOrderLine
@orderId varchar (50)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
|
注意 存储过程只能返回 int 类型,如果返回一个字符串 ,将会报类型转化错误
2 后台调用
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
DataTable dt = new DataTable();
string connStr = System.Configuration.ConfigurationManager.ConnectionStrings[ "BLL.Properties.Settings.ShoppingDBConnectionString" ].ToString();
using(SqlConnection conn= new SqlConnection(connStr)){
string callName = "GetOrderLine" ;
using (SqlCommand command = new SqlCommand(callName, conn))
{
command.CommandType = CommandType.StoredProcedure;
SqlParameter[] sps = { new SqlParameter( "@orderId" ,SqlDbType. VarChar ,50) ,
new SqlParameter( "@return" ,SqlDbType. Int ) //注册返回值类型
};
sps[0].Value = "43c7cf15-6b2f-4d18-92b2-dbe827f30dfc" ;
sps[1].Direction = ParameterDirection.ReturnValue; //返回参数类型
command.Parameters.AddRange(sps);
using(SqlDataAdapter sda =new SqlDataAdapter()){
sda.SelectCommand = command;
sda.Fill(dt);
//Console.WriteLine(sda.GetFillParameters()[1].Value);
Console.WriteLine(sps[1].Value); //取到返回的值
}
}
}
if(dt. Rows . Count >0){
for ( int i = 0; i < dt. Rows . Count ;i++ )
{
Console.WriteLine(dt. Rows [i][ "ProductId" ]+ ":" +dt. Rows [i][ "ProductPrice" ]+ ":" +dt. Rows [i][ "ProductCount" ]);
}
}
Console.ReadLine();
|
相关文章
猜你喜欢
- ASP.NET本地开发时常见的配置错误及解决方法? 2025-06-10
- ASP.NET自助建站系统的数据库备份与恢复操作指南 2025-06-10
- 个人网站服务器域名解析设置指南:从购买到绑定全流程 2025-06-10
- 个人网站搭建:如何挑选具有弹性扩展能力的服务器? 2025-06-10
- 个人服务器网站搭建:如何选择适合自己的建站程序或框架? 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-27 94
-
2025-05-27 51
-
2025-05-29 40
-
2025-05-29 16
-
2025-05-27 83
热门评论