-
Visual C# 交叉表查询
这是一个Visual C# 交动态交叉表查询示例程序,动态交叉表(SQLServer 2005)查询例子源码:
private void Frm_Main_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(//创建数据库连接对象
@"Server=WIN-GI7E47AND9RLS;database=db_TomeTwo;Uid=sa;Pwd=");
SqlDataAdapter dap = new SqlDataAdapter(//创建数据适配器对象
"select * from tb_VenditionInfo", con);
DataSet ds = new DataSet();//创建数据集
dap.Fill(ds, "table");//填充数据集
dgv_Message.DataSource =//设置数据源
ds.Tables[0].DefaultView;
}
private void btn_Select_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(//创建数据库连接对象
@"Server=WIN-GI7E47AND9RLS;database=db_TomeTwo;Uid=sa;Pwd=");
SqlDataAdapter dap = new SqlDataAdapter("Corss", con);//创建数据适配器
dap.SelectCommand.CommandType =//设置命令为存储过程
CommandType.StoredProcedure;
DataSet ds = new DataSet();//创建数据集
dap.Fill(ds, "table");//填充数据集
dgv_Message.DataSource =//设置数据源
ds.Tables[0].D
- 2022-12-26 00:25:03下载
- 积分:1
-
hnt
说明: 汉诺塔问题的另一种解法,方法非常灵活有效,运行效率高(HANOR of another solution, a very flexible and effective method, high efficiency operation)
- 2006-04-29 22:43:33下载
- 积分:1
-
ISO_14230_3_1999
ISO_14230_3_1999_道路车辆_诊断系统_关键词协议2000_第3部分_应用层。做诊断开发的童鞋应该能用得到。(ISO_14230_3_1999_ road vehicles _ diagnostic systems- Keyword protocol 2000_ _ Part 3 _ the application layer. The development of children' s shoes to make the diagnosis should be able to get.)
- 2013-08-21 21:15:39下载
- 积分:1
-
k-means
C语言编写的一种模式识别里的重要的模糊聚类方法K-means算法的C程序(A pattern recognition C language' s important Fuzzy clustering methods K-means algorithm C program)
- 2014-05-08 00:47:03下载
- 积分:1
-
bg317
BP神经网络的整个训练过程,STM32制作的MP3的全部资料,包括数据分析、绘图等等。( The entire training process BP neural network, STM32 all the information produced by the MP3, Data analysis, plotting, etc..)
- 2017-05-07 23:22:45下载
- 积分:1
-
gomparison
一:个人信息感谢使用PIM个人版20,该产品主要为个人信息记录及使用,个人信息主要说明该作品的使用及版权,二:通信录1浏()
- 2018-02-22 19:38:07下载
- 积分:1
-
支付宝免签收款源码
支付宝免签收款源码,不用购买接口,免费试用
- 2022-01-24 10:18:05下载
- 积分:1
-
Source
科学与工程数值计算算法(Visual C++版),全是代码(Science and Engineering numerical calculation algorithm (Visual C++ version), all the code)
- 2009-10-07 20:36:30下载
- 积分:1
-
c# Network Programming electronic books, the book describes c# programming netwo...
c#的网络编程电子图书,本书描述c#网络编程方面的知识。包括网络基础、网络层编程、应用层编程例子。-c# Network Programming electronic books, the book describes c# programming network of knowledge. Including network infrastructure, network programming layer and the application layer programming examples.
- 2022-11-14 16:30:09下载
- 积分:1
-
OpcNetApiSample
利用OpcNet控件(包含源码)进行OPC通讯的开发样例(OPC communication)
- 2021-04-13 13:28:56下载
- 积分:1