摘要:
API地址 http://47.108.88.211:8089/ 阅读全文
摘要:
Oracle类型转换规则: 对于insert和update操作,oracle将值转换为受影响的的列的类型。对于select操作,oracle会将列的值的类型转换为目标变量的类型。 看如下实验: 1、创建一张表,字段id的类型为number,id字段创建索引,插入一条测试数据 create table 阅读全文
摘要:
利用UIAutomation获取QQ会话聊天信息 AutomationElement window = AutomationElement.FromHandle(get.WindowHwnd); AutomationElement QQMsgList = window.FindFirst(TreeS 阅读全文
摘要:
界面 frmMain using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; us 阅读全文
摘要:
直接学最新技术,起步就与世界同步 。 技术没有好坏之分,只是用技术的人有能力强弱之别。 只要我们充实丰富,社会里总会有你的一席之地,你的存在永远有价值。 我们所作的事情,就是为了改变世界。 不要鄙视业务 ,也不要盲目的相信技术,人要有所思想。 不要互相鄙视,学的东西迟早会用得到。 不要问别人我应该学 阅读全文
摘要:
基于上一篇《C# 日志监控软件 基于 FileSystemWatcher 》改进 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System. 阅读全文
摘要:
request.GetResponse()超时问题的解决 解决办法 1.将http的request的keepAlive设置为false //如果不是必须的要keepalive的,那么就要设置KeepAlive为false: 2.修改System.Net.ServicePointManager.Def 阅读全文
摘要:
在web.config文件中的 system.webServer 节点下 增加如下配置 <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> <add name="Access-Cont 阅读全文