上一页 1 2 3 4 5 6 7 8 ··· 17 下一页
摘要: powerdesigner逆向工程生成PDM时的列注释解决方案 '****************************************************************************** '* File: addComment.vbs '* Purpose: Da 阅读全文
posted @ 2021-07-29 14:48 bxzjzg 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 主要根据中间件来实现对.net core webapi中产生的请求和响应数据进行获取并存入日志文件中; 这里不详细介绍日志文件的使用。你可以自己接入NLog,log4net,Exceptionless等 创建接口记录的中间件 using Microliu.Core.Loggers; using Mi 阅读全文
posted @ 2021-06-25 16:12 bxzjzg 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ResponseResult /// <summary> /// 返回值 /// </summary> public class ResponseResult { public ResponseResult() { } public ResponseResult(int code) { this.C 阅读全文
posted @ 2021-06-25 11:26 bxzjzg 阅读(141) 评论(0) 推荐(0) 编辑
摘要: SqlHelper帮助类 1 public class DbHelper 2 { 3 //数据库连接字符串(web.config来配置),多数据库可使用DbHelperSQLP来实现. 4 public static string connectionString = ConfigurationMa 阅读全文
posted @ 2021-06-15 17:27 bxzjzg 阅读(39) 评论(0) 推荐(0) 编辑
摘要: Sql 递归查询(给定节点查所有父节点、所有子节点的方法) -- 查找所有父节点 with tab as ( select Type_Id,ParentId,Type_Name from Sys_ParamType_V2_0 where Type_Id=316--子节点 union all sele 阅读全文
posted @ 2021-05-27 17:55 bxzjzg 阅读(180) 评论(0) 推荐(0) 编辑
摘要: public static void Run() { const int arrayCount = 10000; const int arraySize = 400; var arrList = new List<int[]>(arrayCount); var arrList1 = new List 阅读全文
posted @ 2021-05-08 21:32 bxzjzg 阅读(42) 评论(0) 推荐(0) 编辑
摘要: T_SQL批量更新语句 --更新tab1 col1和更新时间,共?条 set serveroutput on; declare execCnt NUMBER := 0; cursor cur_cdr is select id from tab1 where PLATFORM = 'Amazon' A 阅读全文
posted @ 2021-01-08 09:33 bxzjzg 阅读(461) 评论(0) 推荐(0) 编辑
摘要: jQuery.validator 自定义验证消息 jQuery.validator.addMethod("ruletypeVali", function (value, element, params) { var customMsg = "请输入正确整数"; let result = true; 阅读全文
posted @ 2020-09-14 11:37 bxzjzg 阅读(353) 评论(0) 推荐(0) 编辑
摘要: select * from user_dependencies where upper(referenced_name) = 'tablename' ; SELECT DISTINCT * FROM user_source WHERE TYPE = 'PROCEDURE' AND upper(tex 阅读全文
posted @ 2020-09-14 11:30 bxzjzg 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 3DESC 请求参数和响应参数全采用3des加密规则,由于我是用.NET对接的,而第三方是Java开发的,所以两种程序之间采用的算法有一点差异,java的3des加密采用的是"DESede/CBC/PKCS5Padding"规则,所以对应的C#规则是"PaddingMode.PKCS7和Cipher 阅读全文
posted @ 2019-12-18 16:49 bxzjzg 阅读(939) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 17 下一页