上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页
摘要: 1. 添加System.Management的引用, using System.Management; /// 获取本机用户名、MAC地址、内网IP地址、公网IP地址、硬盘ID、CPU序列号、系统名称、物理内存。 /// </summary> public class GetSystemInfo { 阅读全文
posted @ 2021-10-09 10:51 博客YS 阅读(269) 评论(0) 推荐(0) 编辑
摘要: #region DataTable-List<Model> /// <summary> /// DataTable转成List /// </summary> /// <typeparam name="T"></typeparam> /// <param name="dt"></param> /// 阅读全文
posted @ 2021-09-29 14:51 博客YS 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1、sqlserver用语句给表注释 EXECUTE sp_addextendedproperty N'MS_Description', N'表注释', N'user', N'dbo', N'table', N'表名', NULL, NULL 2、sqlserver用语句给表的“字段”注释 EXEC 阅读全文
posted @ 2021-09-01 14:54 博客YS 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 使用方式 SqlHelper SqlHelp = new SqlHelper(); SqlHelp.Open(); //开启事务 SqlHelp.TranBegin(); //执行各种SQL语句 //提交事务 SqlHelp.TranCommit(); //回滚事务 SqlHelp.TranRoll 阅读全文
posted @ 2021-08-27 10:12 博客YS 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 封装 /************************************************* * 描述: * * Author:yuanshuo * Date:2021/11/18 10:45:26 * Update: * ******************************* 阅读全文
posted @ 2021-08-26 20:48 博客YS 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1、第一种情况,当写的WebService不支持其他请求时,处理方式;执行在WebConfig配置文件<system.web>节点增加 <webServices> <protocols> <add name="HttpPost"/> <add name="HttpGet"/> <add name=" 阅读全文
posted @ 2021-08-25 15:34 博客YS 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: 一、代码批量插入 实现1: 代码批量(DataTable)插入表,注意:DataTable 列名必须和数据库表列名大小写一致,表名和DataTable表名相同; public bool SqlBulkCopyByDatatable(DataTable dt,ref string emsg) { tr 阅读全文
posted @ 2021-08-19 16:08 博客YS 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1.使用方式 //读取XML string hxml = FileHelper.ReadFileToStr(AppDomain.CurrentDomain.BaseDirectory + "Helper\\手术状态Header.xml"); string bxml = FileHelper.Read 阅读全文
posted @ 2021-07-28 09:26 博客YS 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1.封装方法 /// <summary> /// 动态调用WebServers /// </summary> public static class WebServiceHelper { /// <summary> /// 存放程序集 /// </summary> private static Di 阅读全文
posted @ 2021-07-27 14:47 博客YS 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1. 2. 生成文件后bin下有exe文件 Cmd管理员运行 创建命令:sc create 服务名称 binpath= "文件生成路径" start= auto sc create 测试服务 binpath= "E:\广12相关\CdaBackDocument\WindowsServiceCallB 阅读全文
posted @ 2021-07-21 18:36 博客YS 阅读(58) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 25 下一页