-
C# SQL按姓氏笔画查询数据库并排序
C# 生成一个按姓氏笔画排序的数据库查询语句,按学生姓氏笔画排序并不是字符串排序,是数据库SQL查询端的盒子,下面来看SQL语句的编写方法示例:
string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
@"SELECT 学生姓名,性别,年龄,所在学院 FROM tb_Student ORDER BY 学生姓名 COLLATE chinese_prc_stroke_cs_as_ks_ws");//注意此句的写法,关键语句,姓氏笔画的定义
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-12-24 13:00:03下载
- 积分:1
-
CCpuId100
得到CPU信息的程序.不过好像不准.(Program which obtains CPU information, But it seems not so accuracy.)
- 2002-04-19 09:18:04下载
- 积分:1
-
back_pressure_UDF
说明: 设置fluent中出口背压的udf代码,可以方便的设置,也可以用来改写进出口的非恒定压力!(fluent udf code)
- 2020-11-26 22:19:32下载
- 积分:1
-
IP
说明: DSP28335实现IP通信。调试环境CCS3.0内部已经调试,直接下载使用就行了。网卡芯片:rtl8019(DSP28335 to implement IP communications. CCS3.0 internal debugging debugging environment has a direct download on the line. Chip card: rtl8019)
- 2011-09-19 18:54:03下载
- 积分:1
-
sh79f084A
中颖SH79F084a 芯片的原厂例程. 内含有定时器,中断,ADC,IO操作. (SOP16.-The Sinowealth SH79F084A chip of the original factory routine. Contains a timer, interrupt,ADC, IO operation. SOP16.)
- 2020-09-24 20:27:48下载
- 积分:1
-
模式识别
模式识别入门 适合刚开始学习的人 答案都在里面 自己试过 感觉效果挺好的
- 2023-01-07 16:55:03下载
- 积分:1
-
MFCLIBXX
在bin目录中是SYGUI免费版动态库
syguiF10D.dll Debug版
syguiF10.dll Release版
注:在编译Debug版应用程序后,由于MFC OLE库不一致可能会导致应用程序不能运行,可将该目录下的
MFCO42D.DLL拷贝到应用程序执行的目录中.
在lib目录中使SYGUI免费版LIB导入文件
syguiF10D.lib Debug版
syguiF10.lib Release版
在include目录中是SYGUI头文件
在sample目录中是使用SYGUI应用程序的例子代码
(the bin directory is a free version of SYGUI DLL syguiF10D.dll Debu g version syguiF10.dll Release version Note : Debug version of the compiler application procedures, As for MFC OLE may lead to inconsistent application can not run, Contents may be under the MFCO42D.DLL copy of the application to the implementation of the directory. the lib directory manipulation SYGUI free version LIB Import files syguiF10D.lib Debug version syguiF 10.lib Release version of the include directory is the first document in SYGUI sampl e directory is used SYGUI application code examples)
- 2006-07-23 10:04:53下载
- 积分:1
-
u8glib_arduino_v1.12
8位单片机系统下面的图形用户接口库,非常方便单色液晶开发使用。(8-bit microcontroller system following graphical user interface library, very convenient use monochrome LCD development.)
- 2013-04-12 00:30:30下载
- 积分:1
-
54886756
使用树形控件,VC++编程精选学习源码,很好的参考资料。(Use the tree controls, select learning VC++ programming source code, a good reference.)
- 2013-11-20 12:17:31下载
- 积分:1
-
酒店管理系统 有添加删除 查找客房和用户的功能 数据库连接为SQL...
酒店管理系统 有添加删除 查找客房和用户的功能 数据库连接为SQL-Hotel management system to add deleted users to find rooms and the function of database connections for SQL
- 2022-04-26 22:05:32下载
- 积分:1