上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: 阅读全文
posted @ 2018-07-11 16:12 kerwin cui 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-07-10 15:41 kerwin cui 阅读(6894) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-07-10 15:30 kerwin cui 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #需要安装的库 sudo apt-get install build-dep python-psycopg2 pip install psycopg2 #!/usr/bin/python # -*- coding: UTF-8 -*- import psycopg2 #连接数据库 conn = psycopg2.connect(database="sde_pg_10_3", user="p... 阅读全文
posted @ 2018-07-01 18:11 kerwin cui 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-05 15:21 kerwin cui 阅读(203) 评论(0) 推荐(0) 编辑
摘要: log.config配置文件 引用地址 https://www.cnblogs.com/linezero/p/log4net.html 阅读全文
posted @ 2018-06-05 14:57 kerwin cui 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-05 13:10 kerwin cui 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-02 11:36 kerwin cui 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 游标介绍:游标是一种从表中检索数据并进行操作的灵活手段,游标主要用在服务器上,处理由客户端发送给服务端的sql语句,或是批处理、存储过程、触发器中的数据处理请求。 游标的优点在于它允许应用程序对查询语句select 返回的行结果集中每一行进行相同或不同的操作,而不是一次对整个结果集进行同一种操作;它 阅读全文
posted @ 2018-06-01 16:02 kerwin cui 阅读(20702) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-06-01 15:53 kerwin cui 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: npm install -g express npm cache clean -f npm cache verify npm config get registry npm config get disturl npm config set registry https://registry.npm 阅读全文
posted @ 2018-03-04 15:08 kerwin cui 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 端口映射配置(nginx.conf文件) server{ listen 80; server_name qilin100.cn www.qilin100.cn; location / { proxy_pass http://172.17.0.1:7702; proxy_redirect defaul 阅读全文
posted @ 2018-02-20 23:52 kerwin cui 阅读(112) 评论(0) 推荐(0) 编辑
摘要: netstat -ntpl (TCP类型的端口) netstat -nuplf|grep 3306 //这个表示查找处于监听状态的,端口号为3306的进程 查看系统版本信息 输入"cat /proc/version",说明正在运行的内核版本。 uname -a cat /etc/issue SELi 阅读全文
posted @ 2018-02-16 16:09 kerwin cui 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1.对象和关系数据是业务实体的两种表现形式,业务实体在内存中表现为对象,在数据库中表现为关系数据。内存中的对象之间存在关联和继承关系,而在数据库中,关系数据无法直接表达多对多关联和继承关系。因此,对象-关系映射(ORM)系统一般以中间件的形式存在,主要实现程序对象到关系数据库数据的映射。 2.NHi 阅读全文
posted @ 2017-10-05 12:43 kerwin cui 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1.Git是目前世界上最先进的分布式版本控制系统。 2.分布式版本控制系统通常也有一台充当“中央服务器”的电脑,但这个服务器的作用仅仅是用来方便“交换”大家的修改,没有它大家也一样干活,只是交换修改不方便而已。 3.Git分支十分强大,在团队开发中应该充分应用。在实际开发中,我们应该按照几个基本原则 阅读全文
posted @ 2017-10-03 01:35 kerwin cui 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页