上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 127 下一页
摘要: https://www.cnblogs.com/bruce1992/p/15028817.html 用c#中创建一个windows服务非常简单,与windows服务相关的类都在System.ServiceProcess命名空间下。 每个服务都需要继承自ServiceBase类,并重写相应的启动、暂停 阅读全文
posted @ 2022-11-12 14:33 yinghualeihenmei 阅读(232) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/i-cheng/p/10018801.html 1.System.Timers命名空间下的Timer类。System.Timers.Timer类:定义一个System.Timers.Timer对象,然后绑定Elapsed事件,通过Start()方法来启 阅读全文
posted @ 2022-11-12 14:13 yinghualeihenmei 阅读(245) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/mahaisong/archive/2011/07/18/2109364.html system.ServiceProcess 命名空间提供用于实现、安装和控制 Windows 服务应用程序的类。服务是长期运行的可执行文件,其运行没有用户界面。实现服务 阅读全文
posted @ 2022-11-11 14:48 yinghualeihenmei 阅读(14) 评论(0) 推荐(0) 编辑
摘要: https://wenda.so.com/q/1371555124068874?src=140&q=c%23%E5%AE%9A%E6%97%B6%E7%A8%8B%E5%BA%8F https://blog.csdn.net/yudehui/article/details/9454947 如果是we 阅读全文
posted @ 2022-11-11 13:56 yinghualeihenmei 阅读(32) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jingfengling/p/5962182.html 简单用法就不写了。 原始表: 1、Group By中Select指定的字段限制 示例 select 类别, sum(数量) as 数量之和, 摘要 from A group by 类别 order 阅读全文
posted @ 2022-11-11 11:18 yinghualeihenmei 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 1. 聚合函数的介绍 聚合函数又叫组函数,通常是对表中的数据进行统计和计算,一般结合分组(group by)来使用,用于统计和计算分组数据。 常用的聚合函数: count(col): 表示求指定列的总行数 max(col): 表示求指定列的最大值 min(col): 表示求指定列的最小值 sum(c 阅读全文
posted @ 2022-11-11 10:35 yinghualeihenmei 阅读(270) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/86f4a73eb9349037d65269bb.html C#编写的winform程序放在服务器执行 新建的一个winform程序,将config文件,与exe程序,两个拷到服务器,就可以直接运行了! C#编写的winform程序 阅读全文
posted @ 2022-11-10 19:27 yinghualeihenmei 阅读(1246) 评论(0) 推荐(0) 编辑
摘要: http://t.zoukankan.com/YYkun-p-15380859.html C# 实现数据脱敏 数据脱敏,此处以姓名、身份证为例 /// <summary> /// 姓名敏感处理 /// </summary> /// <param name="fullName">姓名</param> 阅读全文
posted @ 2022-11-10 17:59 yinghualeihenmei 阅读(450) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lyy445910200/p/5420554.html 1.绑定数据库中一个主键前台代码:<ItemTemplate> <asp:ImageButton ID="ibtnUpdate" runat="server" CommandArgument='< 阅读全文
posted @ 2022-11-10 10:36 yinghualeihenmei 阅读(31) 评论(0) 推荐(0) 编辑
摘要: SELECT * FROM table WHERE code not LIKE '%[^0-9]%'SELECT * FROM 表WHERE IsNumeric(需要检查的字段名) = 0 阅读全文
posted @ 2022-11-09 17:06 yinghualeihenmei 阅读(1363) 评论(0) 推荐(0) 编辑
上一页 1 ··· 94 95 96 97 98 99 100 101 102 ··· 127 下一页