MYSQL安装丢失MSVCR120.dll问题

摘要: 今天安装MYSQL 5.7.30 数据库 在初始化数据库(mysqld --initialize=insecure --user=mysql)时,出现丢失MSVCR120.dll问题 经百度 获取 解决方法:下载 VC redist packages for x64,下载完成,点击运行即可。 本已经 阅读全文
posted @ 2020-05-13 17:26 #知了 阅读(1692) 评论(0) 推荐(0)

oracle 常用语句

摘要: 创建表空间create tablespace data_TABLESPACElogging datafile 'D:\APP\ADMINISTRATOR\ORADATA\WEAIRS\DATA.DBF' size 50m autoextend on next 50m maxsize 20480m e 阅读全文
posted @ 2020-04-13 09:45 #知了 阅读(137) 评论(0) 推荐(0)

XML Serialize/Deserialize

摘要: using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Text; using System.Web; using System.Xml; using System.Xml.Serializati... 阅读全文
posted @ 2019-05-15 11:18 #知了 阅读(148) 评论(0) 推荐(0)

StackExchange.Redis 封装类

摘要: using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq; using System.Configuration; using Newtonsoft.Json; namespace Services { public class CacheServic... 阅读全文
posted @ 2019-05-15 11:15 #知了 阅读(278) 评论(0) 推荐(0)

.NET CORE EnvironmentVariable

摘要: .NET CORE System variables SETIn System variablese.g1:Variable name: ASPNETCORE_ENVIRONMENTVariable value:Developmente.g2:Variable name: xxxDBConnecti 阅读全文
posted @ 2019-05-15 11:06 #知了 阅读(1032) 评论(0) 推荐(0)

wcf 代理实例

摘要: 通过过代理调用 wcf服务 using Microsoft.Extensions.Options; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Security; using System.Security.Cryptography.X5... 阅读全文
posted @ 2019-05-15 10:50 #知了 阅读(322) 评论(0) 推荐(0)

RestSharp 封状实例

摘要: 1 public class Rest 2 { 3 private static Logger logger = LogManager.GetCurrentClassLogger(); 4 private IRestClient client; 5 string proxyIp = AppConfig.proxyIp; 6 int proxyPort = AppConfig.prox... 阅读全文
posted @ 2019-05-15 10:33 #知了 阅读(880) 评论(0) 推荐(0)

install windows service

摘要: install windows serivce e.g @echo offecho echo Service Installation... C:\Windows\Microsoft.NET\Framework64\v4.0.30319\InstallUtil.exe D:\Project\Wind 阅读全文
posted @ 2019-05-15 10:25 #知了 阅读(261) 评论(0) 推荐(0)

redis SERVER INSTALL WINDOWS SERVICE

摘要: 以管理 员身份 运行 CMD 命令,进入redis所在目录,并运行下 脚本redis-server --service-install redis.windows-service.conf --loglevel verbose 阅读全文
posted @ 2019-05-15 10:16 #知了 阅读(253) 评论(0) 推荐(0)

上传文件

摘要: public class UploadFile { //允许上传文件的扩展名 private List<string> _extensions = new List<string>(); /// <summary> /// 添加允许上传文件的扩展名 /// </summary> /// <param 阅读全文
posted @ 2018-10-10 12:52 #知了 阅读(87) 评论(0) 推荐(0)