摘要: Setting the NLS_LANG Environment Variable for Oracle Databases ``` SELECT NLS_LANGUAGE || '_' || NLS_TERRITORY || '.' || NLS_NCHAR_CHARACTERSET AS NLS 阅读全文
posted @ 2022-04-02 21:40 ChasingDreams 阅读(141) 评论(0) 推荐(0) 编辑
摘要: internal class Patient { public int PType { get; set; } public string PatientName { get; set; } } internal class PatientType { public int PType { get; 阅读全文
posted @ 2022-03-30 17:04 ChasingDreams 阅读(62) 评论(0) 推荐(0) 编辑
摘要: > Console.WriteLine(new Uri(new Uri("https://www.baidu.com/api"), "/gateway/code")); https://www.baidu.com/gateway/code > Console.WriteLine(new Uri(ne 阅读全文
posted @ 2022-03-24 23:51 ChasingDreams 阅读(603) 评论(0) 推荐(2) 编辑
摘要: 0.云服务器需要打开的端口:7000、80 1.反代将来自80端口的HTTP请求转发至FRPS 2.FRPS和FRPC之间通过7000通讯 3.FRPC接收到转发过来的流量,转发至本地80端口 以上所有端口都可以通过docker、nginx、frpc各种组合配置 增加反代的目的是捕获请求源的IP 服 阅读全文
posted @ 2022-02-13 17:38 ChasingDreams 阅读(255) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/1303627/202202/1303627-20220207131212401-1473785240.png) 阅读全文
posted @ 2022-02-07 13:12 ChasingDreams 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 建立连接超时时间 var httpClient = new HttpClient(new SocketsHttpHandler() { ConnectTimeout = ... }); 响应超时时间 httpClient.TimeOut = .... services.AddHttpClient(" 阅读全文
posted @ 2022-01-17 22:36 ChasingDreams 阅读(163) 评论(0) 推荐(0) 编辑
摘要: SELECT TRANSID 交易编码, to_CHAR( MIN(ACCEPTTIME),'yyyy-mm-dd hh24:mi:ss,ff3') 接受请求时间, to_CHAR( MIN(TRANSDATE),'yyyy-mm-dd hh24:mi:ss,ff3') 推送结果时间, EXTRAC 阅读全文
posted @ 2022-01-17 14:48 ChasingDreams 阅读(290) 评论(0) 推荐(0) 编辑
摘要: netsh interface ipv4 show excludedportrange protocol=tcp Restart-Service hns -Force netsh int ipv4 add excludedportrange protocol=tcp startport=1433 n 阅读全文
posted @ 2022-01-09 19:57 ChasingDreams 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 不要在父容器添加控件时,指定控件width等属性,要等控件添加到父容器后,在进行调整,属性就不会自动变换 阅读全文
posted @ 2022-01-06 16:12 ChasingDreams 阅读(76) 评论(1) 推荐(0) 编辑
摘要: 取消richtextbox只读即可解决 参考链接:https://stackoverflow.com/questions/42278823/richtextbox-not-displaying-image 阅读全文
posted @ 2022-01-06 16:08 ChasingDreams 阅读(93) 评论(0) 推荐(0) 编辑