-
matlabsin
matlab6.5与vc的各种混编方式举例 包括 dll方式、引擎方式、com方式、以及vc调用simulink模型运行方式(matlab6.5 vc with the mixed mode, including dll example, the engine, com, as well as vc Simulink model called Operation Mode)
- 2005-05-02 00:02:33下载
- 积分:1
-
PT100
51单片机实现PT100温度测量程序,采用恒流源测量原理(Realization of PT100 temperature measurement program by 51 single chip microcomputer)
- 2018-05-06 12:23:37下载
- 积分:1
-
C# 通过SqlReader HasRows判断指定表中是否有数据
本例主要是判断指定的数据库数据表中是否有数据,这里使用了通过判断HasRows的返回值来判断,若返回值为真,则有数据,反之则无数据,最后用MessageBox.Show显示判断结果,完整的过程:
//实例化SqlConnection变量conn
SqlConnection conn = new SqlConnection("server=.;database=db_14;uid=sa;pwd=");
conn.Open();//打开连接
//创建一个SqlCommand对象
SqlCommand cmd = new SqlCommand("select * from " + textBox1.Text.Trim(), conn);
//使用ExecuteReade方法创建SqlDataReader对象
SqlDataReader sdr = cmd.ExecuteReader();
sdr.Read();//调用Read方法读取SqlDataReade
if (sdr.HasRows)//使用HasRows属性判断结果中是否有数据
{
MessageBox.Show("数据表中有值");//弹出提示信息
}
else
{
MessageBox.Show("数据表中没有任何数据");
}
- 2022-02-07 01:03:03下载
- 积分:1
-
可以拨打网络电话网络电话源码网络电话源码
可以拨打网络电话网络电话源码网络电话源码-网络电话源码网络电话源码网络电话源码网络电话源码
- 2022-10-25 22:30:03下载
- 积分:1
-
curvefit
正弦信号的频率,相位,幅度等参数的最小二乘法拟合(sine signal parameters fitting)
- 2017-10-29 09:35:49下载
- 积分:1
-
NETDEVSDK_Win64_C#_V2.1.0.0
说明: 基于宇视摄像头sdk,使用C#开发的搜索、添加当前网络中存在的摄像头,视频浏览、下载、抓拍,控制摄像头等(Based on the universal vision camera SDK, search and add the existing cameras in the current network, video browsing, downloading, capturing, control camera, etc. developed by C#)
- 2020-07-09 16:48:55下载
- 积分:1
-
ADOM+设计篇意在测试com+的事务处理能否正确执行。
将组件安装后,在组件服务中该com+组件的属性设置中将“激活”页的“启用对象池”选项选中,执行客户...
ADOM+设计篇意在测试com+的事务处理能否正确执行。
将组件安装后,在组件服务中该com+组件的属性设置中将“激活”页的“启用对象池”选项选中,执行客户端程序调用上面这个方法,发现com+的事务机制不能正确执行,数据会写入数据库中。如果不选中“启用对象池”,则一切正常,数据并不会写到数据库中。
说明:Translation DataModule的设置,事务属性:requires a transaction,允许object pooling,pooled设为true,无论将AutoComplete设为True或False都会出现上述情况。
该问题最先由ytwxw (wxw) 提出,至今尚未有结论,我也发现类似问题。我俩探讨后无法解决,特在此再开一贴。请各路com+高手帮忙解答!
-ADOM design sections was aimed at testing com business can correct implementation. Components will be installed, Component services in the com component attributes will be set up "activated" page "open object pool" option selected. implementation of client programs call the above, the Panel found com mechanism for proper implementation, data will be included in the database. If not selected "targets of the opening pool", then everything normal, and no data writes database. Note : Translation DataModule settings, the panel attributes : requires a transaction, allowing object pooling. pooled as a true, Regardle
- 2022-08-16 22:17:39下载
- 积分:1
-
Star
C# 语言,wince源码,方便初学者学习(C# language, wince source, easy for beginners to learn)
- 2013-11-18 16:19:35下载
- 积分:1
-
AStar
说明: 游戏里常用的寻路算法,用C#实现的经典ASTAR寻路算法,VS2013/2017编译通过(Classical ASTAR routing algorithm implemented by C# is compiled and passed by VS2013/2017.)
- 2020-06-16 00:40:02下载
- 积分:1
-
VC++实现对Json的解析访问
采用VC++实现对Json数据格式的解析,添加了VS2008,VS2010,VS2015,VS2017的版本支持
可以直接实现数据结构struct与Json格式文本之间的直接转换
- 2022-05-05 21:51:46下载
- 积分:1