-
C#调用存储过程显示客户的订单金额
Visual C# 通过调用存储过程显示客户的订单金额,获取客户的订单总额(获取存储过程参数的返回值):
private void button1_Click(object sender, EventArgs e)
{//获取客户的订单总额(获取存储过程参数的返回值)
DataClasses1DataContext MyDataContext = new DataClasses1DataContext();
string MyCustomer = "alfki";
decimal? MyAmount = 0;
MyDataContext.CustOrderTotal(MyCustomer, ref MyAmount);
MessageBox.Show(MyCustomer+"客户的订单金额是:"+MyAmount.ToString(),"信息提示",MessageBoxButtons.OK);
}
- 2022-10-21 01:10:03下载
- 积分:1
-
balance_car2009.7.20
两轮自平衡车程序,包括卡尔曼算法和PID算法,初步实现。(2 Since the balance of vehicles, including the Kalman algorithm and PID algorithm, basically.)
- 2010-09-19 13:53:07下载
- 积分:1
-
mips_ucos_1.10
uC/OS-II在MIPS 4KC处理器下面的移植,可以用MIPS SDE编译,简单实用,值得收藏。(uC/OS-II processor in the MIPS 4KC following transplantation, can be compiled with MIPS SDE, simple and practical, worth collecting.)
- 2010-08-12 01:27:55下载
- 积分:1
-
luxiandeng5
μC/OS-Ⅱ是一个完整的,可移植、固化和裁剪的实时多任务内核,是用ANSI的C语言编写的,包含一小部分汇编语言代码,使之可供不同架构的微处理器使用。(embedded operating system compiler environment hardware structure transplantation Case)
- 2009-12-11 17:00:33下载
- 积分:1
-
SONGCIFA
松弛法解方程C程序(relaxation method of solving equations C program.)
- 2006-11-24 11:23:20下载
- 积分:1
-
MAX30102_demo
说明: MAX30102例程,实测已经能够稳定输出(Max31002 routine, the actual measurement has been able to stabilize the output)
- 2020-05-09 09:11:12下载
- 积分:1
-
nRF24Z1_external_MCU_1_0
无线收发芯片nrf24z1传声系统,各部分驱动编写,MCU为Atmega16单片机(failed to translate)
- 2012-03-09 13:45:59下载
- 积分:1
-
依据条件获取的对应的数据
依据一定条件 通过查询数据库 获取数据库中对应的数据
- 2022-02-05 02:57:40下载
- 积分:1
-
jicheng
定义点Point类作为基类,在此基础上派生出直线Line类和圆Circle类,在Circle类的基础上以不同的属性派生出圆柱Cylinder类和球Spheroid。并要求基类和各派生类具有以下特点:
(1) Line类含有计算直线长度和斜率的成员函数。
(2) Circle类含有计算圆面积的成员函数。
(3) Cylinder类含有计算圆柱表面积和体积的成员函数。
(4) Spheroid类含有计算球体的表面积和体积的成员函数。
(Point definition of point type as the base category, on the basis of a straight line derived Circle Circle Line category and class, in the Circle class based on different attributes derived Cylinder class and ball cylinder Spheroid. And requested the base class, and factions of Health category has the following characteristics: (1) Line category contains the length and slope of a straight-line calculation of member functions. (2) Circle type of circular area containing the members of the calculation function. (3) Cylinder category contains cylindrical surface area and volume calculation of the member functions. (4) Spheroid Spheroid category contains the calculation of surface area and volume of the member functions.)
- 2009-01-03 09:49:40下载
- 积分:1
-
C#使用硬盘序列号和CPU序列号生成机器码 实例源码下载
使用硬盘序列号和CPU序列号生成机器码
- 2013-01-27下载
- 积分:1