-
SQLite
sqlite接口函数说明文档,及相关函数的部分案例(sqlite interface function part of the case description documents, and related functions)
- 2012-06-25 16:58:47下载
- 积分:1
-
SteamVR For Unity插件
SteamVR For Unity插件
SteamVR plugin for Unity - v1.0.9
Copyright 2014-2016, Valve Corporation, All rights reserved.
Quickstart:
To use, simply add the SteamVR_Camera script to your Camera object(s). Everything else gets set up at
runtime. See the included quickstart guide for more details.
- 2022-07-07 15:28:36下载
- 积分:1
-
OPC服务器源码
OPC服务器源码,可以运行,可通过标准OPC客户程序读写数据。
- 2022-08-06 08:52:12下载
- 积分:1
-
_ping
Ping代码。这学校的课程设计。验证与远程计算机的连接。该命令只有在安装了 TCP/IP 协议后才可以使用。(Ping code. This design of the school curriculum. Authentication with the remote computer. The order only if the installed TCP/IP protocol can be used after.)
- 2008-04-17 19:48:09下载
- 积分:1
-
SwfUpload在MVC4下多文件上传缩略图水印例子 示例源码下载
SwfUpload在MVC4下多文件上传缩略图水印例子 示例源码下载
- 2014-03-23下载
- 积分:1
-
dataJudge
华为比赛试题 输入数学判断公式 判断数字是否在规定范围内(to complete the function of judge the data )
- 2013-06-05 23:38:58下载
- 积分:1
-
频率计(5M)
stm32f103测方波频率。1M以上,精确度0.01%
- 2022-08-06 17:30:18下载
- 积分:1
-
sqlcipher_vs2008
支持加密Sqllite库,vs2008 + sqlite3 + sqlcipher,测试可用(Supports encryption Sqllite library, VS2008+ SQLite3+ sqlcipher, testing available)
- 2020-06-26 18:00:02下载
- 积分:1
-
WinMain105
孙鑫VC._codelesson 1Lesson1CodeWinMainWinMain.c(SUN Xin VC._codelesson 1Lesson1CodeWinMainWinMain.c)
- 2016-05-08 12:08:14下载
- 积分:1
-
C# 建立SQL Server数据库连接的基本方法
C# 建立SQL Server数据库连接的基本方法,核心代码为:
try
{
string ConStr =//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;user id=sa;pwd=;database=db_TomeTwo";
SqlConnection con = new SqlConnection(ConStr);//创建数据库连接对象
string SqlStr = "select * from 帐单";//创建SQL查询字符串
SqlDataAdapter ada = new SqlDataAdapter(SqlStr, con);//创建数据适配器对象
DataSet ds = new DataSet();//创建数据表
ada.Fill(ds);//填充数据集
this.dgv_Message.DataSource =//设置数据源
ds.Tables[0].DefaultView;
}
catch(Exception ex)//捕获异常
{
MessageBox.Show(ex.Message,"提示!");//弹出消息对话框
}
- 2022-07-28 04:06:36下载
- 积分:1