上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 36 下一页
摘要: 1、下载vs_Professional.exe 网址:https://visualstudio.microsoft.com/zh-hans/downloads/ 2、新建缓存文件夹 如D:\vs2022,把vs_Professional.exe放入该文件夹; 3、打开cmd命令行,输入: D:\vs 阅读全文
posted @ 2021-11-26 09:58 ꧁执笔小白꧂ 阅读(3133) 评论(0) 推荐(1)
摘要: 一,安装宝塔 1.安装宝塔 yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh 2.宝塔中安装Nginx 3.安装php环境(版本不重要,按完能 阅读全文
posted @ 2021-11-24 23:00 ꧁执笔小白꧂ 阅读(927) 评论(2) 推荐(0)
摘要: 教程: 1、Ubuntu18+mono+Nginx+init部署ASP.NET项目 2、Ubuntu18+.netcore+Nginx+Supervisor部署ASP.NET项目 3、Ubuntu16.4+.Net5.0+Nginx部署ASP.NET项目(安装SDK) 4、Ubuntu18+.net 阅读全文
posted @ 2021-11-24 22:46 ꧁执笔小白꧂ 阅读(378) 评论(0) 推荐(0)
摘要: 存在就更新,不存在就插入 1 IF NOT EXISTS ( 2 SELECT 3 cInvCCode 4 FROM 5 [{0}].[dbo].InvDefaultValue 6 WHERE 7 cInvCCode = @cInvCCode 8 ) 9 INSERT 10 INTO [{0}].[ 阅读全文
posted @ 2021-11-24 11:39 ꧁执笔小白꧂ 阅读(114) 评论(0) 推荐(0)
摘要: IF EXISTS(SELECT 1 FROM sys.views WHERE name='View_ProductInStockBill') DROP VIEW View_ProductInStockBill https://www.cnblogs.com/YyuTtian/p/4610953.h 阅读全文
posted @ 2021-11-24 11:35 ꧁执笔小白꧂ 阅读(66) 评论(0) 推荐(0)
摘要: MD5算法 /** *┌──────────────────────────────────────────────────────────────┐ *│ 描 述:日志相关的工具类 *│ 作 者:执笔小白 *│ 版 本:1.0 *│ 创建时间:2020-6-13 15:40:56 *└────── 阅读全文
posted @ 2021-11-16 15:05 ꧁执笔小白꧂ 阅读(388) 评论(0) 推荐(0)
摘要: 1 string str = string.Format("my name is{0}, I'm {1} years old",name,age); 2 string str2 = $"my name is{name}, I'm {age} years old"; 阅读全文
posted @ 2021-11-11 13:24 ꧁执笔小白꧂ 阅读(138) 评论(0) 推荐(0)
摘要: 未整理 一,减少 select * 语句,尽量使用覆盖索引。 二,where与on的执行顺序。 三,inner join、left join。 1.left join 的on 不能写右表的条件 (如rtable.id='11'、 rtable.id in ('1') ) 四,最好不用(!= 、<> 阅读全文
posted @ 2021-11-10 12:01 ꧁执笔小白꧂ 阅读(52) 评论(0) 推荐(0)
摘要: 标题: Microsoft SQL Server Management Studio 还原数据库“UFDATA_002_2021”时失败。 (Microsoft.SqlServer.Management.RelationalEngineTasks) 其他信息: System.Data.SqlClie 阅读全文
posted @ 2021-11-09 10:13 ꧁执笔小白꧂ 阅读(837) 评论(0) 推荐(0)
摘要: app.config文件 <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <!--上次成功运行的时间,yyyy-MM-dd hh:mm:ss, 2021-10-25 01:01:01--> <add key= 阅读全文
posted @ 2021-11-03 14:14 ꧁执笔小白꧂ 阅读(1043) 评论(0) 推荐(0)
摘要: SQL中FROM数据库名.dbo.表名的DBO 相当于用户名,表示以所有者身份使用表 例如: SELECT * FROM [IP].[数据库名].DBO.表名 IP的需要建立链式服务器,同机不需要加IP 阅读全文
posted @ 2021-11-01 09:12 ꧁执笔小白꧂ 阅读(152) 评论(0) 推荐(0)
摘要: 方案一: 1、CMD命令行 执行以下命令 config set requirepass test123 #设置Redis密码为test123 config get requirepass #查询密码 auth test123 #密码验证 2、效果如下: 方案二: 1、打开redis安装目录 如:C: 阅读全文
posted @ 2021-10-31 00:59 ꧁执笔小白꧂ 阅读(151) 评论(0) 推荐(0)
摘要: (一)全新服务器安装邮件服务独立运行: 请使用EwoMail开源邮件服务器软件,参照下面的文章 http://doc.ewomail.com/docs/ewomail/jianjie https://blog.csdn.net/qq_41692307/article/details/88318365 阅读全文
posted @ 2021-10-30 22:21 ꧁执笔小白꧂ 阅读(1563) 评论(0) 推荐(0)
摘要: 已实测 阅读全文
posted @ 2021-10-29 16:37 ꧁执笔小白꧂ 阅读(63) 评论(0) 推荐(0)
摘要: C#-Http协议通讯(三)-HttpWebRequest_Get、Post、Put、Delete方法 阅读全文
posted @ 2021-10-29 14:49 ꧁执笔小白꧂ 阅读(391) 评论(0) 推荐(0)
摘要: 1.用矩形等框选文字区域 2.选择-色彩范围:选择文字颜色 3.填充-内容识别 阅读全文
posted @ 2021-10-29 09:26 ꧁执笔小白꧂ 阅读(2489) 评论(0) 推荐(0)
摘要: 1.选择-主体:选择主体 2.选择并遮盖:用来调整边缘 阅读全文
posted @ 2021-10-29 09:03 ꧁执笔小白꧂ 阅读(266) 评论(0) 推荐(0)
摘要: MSSql: Orlace: Mysql: 待写 阅读全文
posted @ 2021-10-28 17:09 ꧁执笔小白꧂ 阅读(297) 评论(0) 推荐(0)
摘要: 1 阅读全文
posted @ 2021-10-27 14:23 ꧁执笔小白꧂ 阅读(31) 评论(0) 推荐(0)
摘要: 原因: 因为定时任务未自动触发,手动运行的并不能正常运行 对策: 配置程序打印运行日志,观察是否正常运行。 本地环境时,触发器可以使用【启动时】,设置好重启电脑就可以了。 服务器环境,触发器可以使用【每天-00:00:00】(一般为当前时刻的后面的时间,方便观察效果)。 阅读全文
posted @ 2021-10-25 11:03 ꧁执笔小白꧂ 阅读(350) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 36 下一页