用处 ; 防止用户利用特殊符号来进行非法登录 uname = input() upwd = input() sql = select * from userinfo where user= %s and upwd=%s res = cursor.execute(sql,[uname,upwd]))# ...
分类:
数据库技术 时间:
2019-01-24 20:30:31
收藏:
0 评论:
0 赞:
0 阅读:
249
/* %v 输出结构体 {10 30} %+v 输出结构体显示字段名 {one:10 tow:30} %#v 输出结构体源代码片段 main.Point{one:10, tow:30} %T 输出值的类型 main.Point %t 输出格式化布尔值 true %d`输出标准的十进制格式化 100 ... ...
分类:
其他 时间:
2019-01-24 20:30:12
收藏:
0 评论:
0 赞:
0 阅读:
263
getenforce 查询状态 setenforce 0 临时关闭 永久关闭vim /etc/selinux/configlinux配置文件内容SELINUC=disabled关闭重启系统生效 临时关闭防火墙:systemctl shop firewalld永久关闭防火墙:systemctl dis ...
分类:
系统服务 时间:
2019-01-24 20:29:45
收藏:
0 评论:
0 赞:
0 阅读:
247
转自:https://idig8.com/2018/09/24/xiaochengxujavashizhanxiaochengxudegerenxinxizuopinshoucangguanzhu65/ 个人信息页面有一个tab(作品,收藏,关注)源码:https://github.com/limi ...
分类:
微信 时间:
2019-01-24 20:29:26
收藏:
0 评论:
0 赞:
0 阅读:
159
HttpServlet: 继承GenericServlet,针对于HTTP协议所定制。 在service()方法中直接把ServletRequest 和 ServletResponse 转为HttpServletRequest 和HttpServletResponse。 并调用了重载的service ...
分类:
编程语言 时间:
2019-01-24 20:29:11
收藏:
0 评论:
0 赞:
0 阅读:
166
ubuntu 安装 svn-server
分类:
系统服务 时间:
2019-01-24 20:06:01
收藏:
0 评论:
0 赞:
0 阅读:
182
出处:https://mp.weixin.qq.com/s?__biz=MzU3MTQwNDEyMg==&mid=2247483680&idx=1&sn=a844dc83df3316ac0102ea11511b8b46&chksm=fce1fb15cb9672032e98857a74f4e971a1 ...
分类:
其他 时间:
2019-01-24 20:05:01
收藏:
0 评论:
0 赞:
0 阅读:
184
调整字体大小的几种方式,大小依次增大,具体如下: 【Reference】 1、Adjusting font size with TikZ picture ...
分类:
其他 时间:
2019-01-24 20:04:44
收藏:
0 评论:
0 赞:
0 阅读:
865
[toc] 题目链接 "Regular Expression Matching LeetCode" 注意点 “. ”可以匹配任何字符串(包括空的) 解法 解法一:参考 "Regular Expression Matching 正则表达式匹配" 。时间复杂度为O(n) 小结 第一反应是用C++11的r ...
分类:
其他 时间:
2019-01-24 20:04:25
收藏:
0 评论:
0 赞:
0 阅读:
176
SDK开发包下载地址:http://www.mxdraw.com/ndetail_10124.html1. 编写快速入门教程2. 重构前端代码,支持一个页面多个三维控件同时加载,或二维和三维同时加载 3. 简化前端代码引用控件,只需一个函数就能动态创建三维控件4. 三维控件绘图区域,与界面UI分离5 ...
分类:
Web开发 时间:
2019-01-24 20:04:11
收藏:
0 评论:
0 赞:
0 阅读:
175
https://github.com/zhreshold/gluon-cv/commit/73b3986aaa2e0d0e6f3f428c12072e3a9d29905e gluoncv可能版本还没更新,不过小bug已经解决了。 至此,gluoncv 检测部分,从自己的训练集制作,到难样例标记,到评 ...
分类:
其他 时间:
2019-01-24 20:03:29
收藏:
0 评论:
0 赞:
0 阅读:
252
1.0 SELECT语句用来从数据表中检索信息。 what_to_select指出你想要看到的内容,可以是列的一个表,或*表示“所有的列”。 which_table指出你想要从其检索数据的表。 WHERE子句是可选项,如果选择该项,conditions_to_satisfy指定行必须满足的检索条件。 ...
分类:
数据库技术 时间:
2019-01-24 20:03:11
收藏:
0 评论:
0 赞:
0 阅读:
217
Rendezvous Hashing Rendezvous or highest random weight (HRW) hashing is an algorithm that allows clients to achieve distributed agreement on a set of ...
分类:
其他 时间:
2019-01-24 20:02:55
收藏:
0 评论:
0 赞:
0 阅读:
213
题目链接 https://leetcode.com/problems/validate binary search tree/ 题意 判断给定树是否是BST 思路 根据定义判断。递归。 代码 ...
分类:
其他 时间:
2019-01-24 20:02:15
收藏:
0 评论:
0 赞:
0 阅读:
161
1.在没有做任何操作时,是这样报错的 a.在任务中配置远程执行命令 rsync -raz --delete --progress target/testweb-v1.1.jar root@10.0.0.41:/data/ ssh root@10.0.0.41 "java -jar /data/tes ...
分类:
其他 时间:
2019-01-24 20:01:51
收藏:
0 评论:
0 赞:
0 阅读:
702
public class SqlHelper { /// /// 数据库连接字符串 /// public static readonly string connectionString = ConfigurationManager.ConnectionStrings["xmgl"].ToString... ...
分类:
数据库技术 时间:
2019-01-24 20:01:28
收藏:
0 评论:
0 赞:
0 阅读:
197
os模块 os即操作系统 在os中提供很多关于文件,文件夹,路径处理的函数 os.getcwd() os.chdir() 修改当前工作路径 os.curdir .代表当前 os.pardir ..代表上一级 os.makedirs 创建多级目录 os.sep 获取当前平台的路径分隔符 os.make ...
分类:
其他 时间:
2019-01-24 20:00:57
收藏:
0 评论:
0 赞:
0 阅读:
170
在cmd中运行 出现如下错误: Error: Unable to access xxx.jar 解决方法: 1. 使用绝对路径: 此时依然报错: Error: Unable to access jarfile D:\Program 2. 添加双引号:`java jar "D:\Program Fil ...
分类:
数据库技术 时间:
2019-01-24 20:00:36
收藏:
0 评论:
0 赞:
0 阅读:
281
primary key 主键 notnull 不为空 unique 唯一 foreign key(外键) references t1(id) auto_increment 递增,数字必须为整数 字段的增删改查 : 增 insert into t1 values(XX) 删delete from t1 ...
分类:
数据库技术 时间:
2019-01-24 20:00:19
收藏:
0 评论:
0 赞:
0 阅读:
227
前言 Redux 已经历了几个年头,很多 React 技术栈开发者选用它,我也是其中一员。期间看过数次源码,从最开始为了弄清楚某一部分运行方式来解决一些 Bug,到后来看源码解答我的一些假设性疑问,到最后想揭开它的面纱获得更多指导。在这个过程中我逐渐对 Redux 有了更多认识和收获,因此也决定写下 ...
分类:
其他 时间:
2019-01-24 20:00:03
收藏:
0 评论:
0 赞:
0 阅读:
154