05 2021 档案
摘要:using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.
阅读全文
摘要:system.argumentexception:找不到xxx定义。缺少命名空间为xxx的服务说明 动态代理的方式调用webservice服务:某种情况下会出现此类问题:原因在于: 在浏览器中打开了.wsdl服务地址,并将打开的文件复制出来,粘贴到本地文本中了,并将这个文本的后缀名改为.wsdl文件
阅读全文
摘要:首先进入文件夹:C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools cmd进入到这个文件夹 输入:wsdl.exe /language:c# /n:TestDemo /out:d:/Temp/TestSer
阅读全文
摘要:sqlserver 查询当天/本周/本月/本季度/本年的数据 当天数据:select * from tableName where datediff(day, 字段名,getdate())=0 本周数据:select * from tableName where datediff(week, 字段名
阅读全文
摘要:update nvr_downfailed INNER JOIN( select nvr_restartnum from nvr_downfailed where downfile_id =(select max(downfile_id) from nvr_downfailed) ) b on nv
阅读全文
摘要:using System; using System.Diagnostics; using System.Runtime.InteropServices; using System.Threading; using System.Timers; namespace ConsoleApp8 { cla
阅读全文
摘要:https://blog.csdn.net/qq_36675754/article/details/81381341/
阅读全文
摘要:以下两个sql任意一个可查询 select @@basedir as basePath from dual ; show variables like '%basedir%'; 查看数据库data路径:以下查询任意一个均可 select @@datadir as dataPath from dual
阅读全文
摘要:Console.WriteLine(DateTime.ParseExact(20210511102323.ToString(), "yyyyMMddHHmmss", new CultureInfo("zh-CN", true),DateTimeStyles.AllowInnerWhite).ToSt
阅读全文