在用 Visual Studio 编译比较早的代码时,经常会遇到错误: 错误 C4996 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecatio ...
分类:
其他好文 时间:
2017-11-03 12:59:03
阅读次数:
728
FAILED => Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add thi ...
分类:
其他好文 时间:
2017-10-27 19:55:29
阅读次数:
358
一.使用模板的原因 对页面设计进行的任何改变都必须对 Python 代码进行相应的修改。 站点设计的修改往往比底层 Python 代码的修改要频繁得多,因此如果可以在不进行 Python 代码修改的情况下变更设计,那将会方便得多。 对页面设计进行的任何改变都必须对 Python 代码进行相应的修改。 ...
分类:
其他好文 时间:
2017-10-26 19:51:52
阅读次数:
164
当单表数据太多时,我们可以水平划分,参考 SqlServer 分区视图实现水平分表 ,水平划分可以提高表的一些性能。 而 垂直分表 则相对很少见到和用到,因为这可能是数据库设计上的问题了。如果数据库中一张表有部分字段几乎从不不更改但经常查询,而部分字段的数据频繁更改,这种设计放到同一个表中就不合理了 ...
分类:
数据库 时间:
2017-10-25 13:07:44
阅读次数:
188
解决方案: 开始创建项目文件时就忽略检查SDL. 文件的属性页 >c/c++ >常规,将SDL检查改为否 至于编译器提供的替代代码方案,后面可以尝试. ...
分类:
Web程序 时间:
2017-10-22 21:41:15
阅读次数:
550
针对vs的一些问题 1、VS2013中使用fopen、sprintf等函数是会出现安全问题: error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disab ...
分类:
编程语言 时间:
2017-10-17 15:01:39
阅读次数:
314
1.[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or comp ...
分类:
其他好文 时间:
2017-10-16 21:48:45
阅读次数:
181
Package Control插件本身是一个为了方便管理插件的插件 最简单的方式是通过Sublime Text 3的console命令界面进行安装 Sublime text3 Sublime text2 如果命令行安装失败,可以使用手动安装的方法 1.官方地址:https://packagecont ...
分类:
其他好文 时间:
2017-10-13 13:58:35
阅读次数:
174
We can also do it without modifying the input by using a variable prev to hold the a[i-1]; if we have to lower a[i] to match a[i-1] instead of raising ...
分类:
其他好文 时间:
2017-10-13 10:22:33
阅读次数:
111
PLSQL导入导出表的正确步骤 原来总是直接 tools->import talbes->Oracle Import结果发现有的时候会出错:有的表不能正确导入, baidu+googel解决办法如下: 导出步骤: 1 tools ->export user object 选择选项,导出.sql文件 ...
分类:
数据库 时间:
2017-10-12 14:59:59
阅读次数:
188