-
rsa
RSA算法,主要讲述算法的原理和过程,设计到加密解密,和溢出处理,初级学习RSA用(RSA algorithm, the algorithm mainly about the principle and process design to the encryption and decryption, and overflow processing, the primary study used RSA)
- 2010-10-25 10:31:04下载
- 积分:1
-
book
3d游戏开发相关书籍 c++数据结构算法 一个简单的射击游戏(3d game development books c++ data structure algorithms a simple shooting game)
- 2015-06-07 20:28:59下载
- 积分:1
-
shumaguanPhongwai
红外遥控发送指令,解码模块接收后,送给数码管显示(Infrared remote control sending instruction, decoding module receives, sends the digital tube display)
- 2012-12-19 15:40:24下载
- 积分:1
-
android-video-replayer-soure-code
Android video player
- 2011-08-22 16:23:26下载
- 积分:1
-
Unicode
Unicode编码转换器,输入Unicode字符,可以转换成相应的汉字,使用VC6.0编写,有MFC界面,代码测试绝对可以正确运行。(Unicode encoding converter, input Unicode characters can be converted into the corresponding Chinese characters, using VC6.0 prepared with MFC interface, code testing can definitely run correctly.)
- 2013-11-13 21:09:03下载
- 积分:1
-
ms6713_cht
ms6713设计资料。。。。。。。。。。。。。。。。(Ms 6713 design data...................)
- 2018-05-04 15:08:31下载
- 积分:1
-
window下获取网卡MAC地址
windows下获取MAC地址,初学者学习使用。windows下获取MAC地址,初学者学习使用。windows下获取MAC地址,初学者学习使用。windows下获取MAC地址,初学者学习使用。windows下获取MAC地址,初学者学习使用。windows下获取MAC地址,初学者学习使用。windows下获取MAC地址,初学者学习使用
- 2022-07-23 04:56:47下载
- 积分:1
-
KinectInterface
这个是Kinect+unity3D的接口与程序 有写好的类(This is the interface and procedures of Kinect+unity3D have written a class)
- 2013-02-27 17:04:48下载
- 积分:1
-
ARM指令集
说明: arm architecture document. nice book. welcome to download
- 2020-06-20 21:20:02下载
- 积分: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