上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 44 下一页
摘要: cnpm install --save jsencrypt index.html <script src="../node_modules/jsencrypt/bin/jsencrypt.min.js"></script> 阅读全文
posted @ 2022-04-16 11:30 三瑞 阅读(65) 评论(0) 推荐(0)
摘要: CopyProject.txt 文件中为要复制的项目名目录 项目名目录1 项目名目录2 EXCLUDE.txt 排除有文件目录 binobj 一键复制多项目源码.bat @echo off Setlocal enabledelayedexpansion @rem 下面变更可以修改 set srcDi 阅读全文
posted @ 2022-04-15 15:17 三瑞 阅读(285) 评论(0) 推荐(0)
摘要: 对比两表数据一样升序不一样的列 declare @tablename_mask varchar(50) set @tablename_mask='A表' declare @tableid int print @tablename_mask select @tableid=id from sysobj 阅读全文
posted @ 2022-04-13 16:22 三瑞 阅读(72) 评论(0) 推荐(0)
摘要: 注意:server_name 多个域名时用空格隔开,否则可能报“could not build server_names_hash, you should increase server_names_hash_bucket_size”(两个域名使用443端口时) server { listen 80 阅读全文
posted @ 2022-04-04 09:52 三瑞 阅读(329) 评论(0) 推荐(0)
摘要: windows: 1、建一个Bat文件如下。 2、设置定时执行Bat方法:https://www.cnblogs.com/bmwchampion/archive/2010/08/21/autotimingexcutejob.html @echo off set basedir=%~dp0 set l 阅读全文
posted @ 2022-04-03 10:51 三瑞 阅读(37) 评论(0) 推荐(0)
摘要: -- 查询表注释 select table_schema, table_name, table_comment from information_schema.tables where table_schema = '数据库名' and table_name = '表名'; -- 查询表字段注释 s 阅读全文
posted @ 2022-04-01 10:01 三瑞 阅读(135) 评论(0) 推荐(0)
摘要: C# 会自动替换 变量 把形如 "{{varName}}" 替换成对应的数值 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Sy 阅读全文
posted @ 2022-03-31 16:27 三瑞 阅读(280) 评论(0) 推荐(0)
摘要: 问题:html 锚点 点击后上面的导航栏被顶上去看不见了 原因:easyui 的属性 data-options="region:'center'" 导致问题,去掉则正常! 阅读全文
posted @ 2022-03-29 09:47 三瑞 阅读(149) 评论(0) 推荐(0)
摘要: ——修改表名 EXEC sp_rename '旧表名', '新表名' ——修改列名 EXEC sp_rename '表名.[旧列名]','新列名','COLUMN' 阅读全文
posted @ 2022-03-23 11:38 三瑞 阅读(1125) 评论(0) 推荐(0)
摘要: 问题一: 1129 - Host '192.168.1.10' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' 解决方法:mysqladmin -uroot -P7506 -pte 阅读全文
posted @ 2022-03-21 10:56 三瑞 阅读(26) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 44 下一页