-
stmf4 lwip实现httpserver
stmf4开发板中http服务器项目,裸板跑lwip, RMII接口的以太网LAN8702A PHY芯片
- 2023-03-11 22:05:03下载
- 积分:1
-
MemoryCard
use rapi to find out storage card information(use rapi to find out storage card informati on)
- 2007-02-08 00:32:20下载
- 积分:1
-
C语言结构体讲解,超详细(pdf)
C语言结构体(struct)最全的讲解.pdf
- 2020-07-01下载
- 积分:1
-
winform 大头贴 拍照 例子源码下载
C# 拍照程序 源码
- 2015-05-22下载
- 积分:1
-
图形学展示3D图形
图形学展示3D图形,VC6.0运行,键盘控制翻转移动
- 2023-04-23 15:50:04下载
- 积分:1
-
Ex05
csharp编程,设置窗体颜色 ,对初学者有一定用处。。。(csharp programming, set form color, useful for beginners. . .)
- 2012-09-14 15:23:08下载
- 积分:1
-
用户输入用户周围较熟悉的30个人的姓名,用汉语拼音的形式,并且人名的长度均不超过19个字符。显示哈希表中的信息时,按照哈希表的长度,从下标1开始一直到哈希表的长...
用户输入用户周围较熟悉的30个人的姓名,用汉语拼音的形式,并且人名的长度均不超过19个字符。显示哈希表中的信息时,按照哈希表的长度,从下标1开始一直到哈希表的长度逐个显示希表中节点的信息,包括下标,即地址,学生姓名,学生姓名所对应键值的大小和查找所需要的长度;显示查找哈希表中的信息时,显示每次查找到的下标所对应的所有信息,即下标,即地址,学生姓名,学生姓名所对应键值的大小和查找所需要的长度。-user input users around the more familiar names of the 30 individuals with Chinese pinyin form, and not the length of the names of more than 19 characters. Hash tables show the information, in accordance with the length of Hash Table, an index from the beginning of the hash table shows the length of the Greek table-by-node information, including index, address, name, the names of students corresponding to the size and the pair find the required length; Hash show you the table the information shows that every search of the corresponding index of all the information that is indexed, address, name, the names of students corresponding to the size and the pair find the required length.
- 2022-03-17 12:31:11下载
- 积分:1
-
C# 解压缩文件和文件夹例子源码
解压缩/压缩文件和文件夹 示例源码下载
- 2013-09-02下载
- 积分:1
-
GIS课堂练习
平时做的GIS课堂小实验,都是比较简单的实验,希望大家可以一起学习。
- 2022-06-17 09:07:33下载
- 积分:1
-
C# UseHaving 在HAVING子句中使用子查询过滤平均值数据
C# UseHaving 在HAVING子句中使用子查询过滤数据,查询学生表中学生年龄大于平均学生年龄的学生信息,查询代码的编写如下:string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
@"SELECT 所在学院,学生姓名,年龄,(SELECT AVG(年龄) FROM tb_Student) AS 平均年龄 FROM tb_Student GROUP BY 所在学院,学生姓名,年龄 HAVING 年龄>(SELECT AVG(年龄) FROM tb_Student)");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(//创建数据适配器
P_Str_SqlStr, P_Str_ConnectionStr);
DataTable P_dt = new DataTable();//创建数据表
P_SqlDataAdapter.Fill(P_dt);//填充数据表
return P_dt;//返回数据表
请在测试前,连接好数据库,本例只是分享代码,并没有找到数据库文件。
- 2022-03-02 18:15:07下载
- 积分:1