码迷,mamicode.com
首页 >  
搜索关键字:warnings    ( 1040个结果
Table configuration with catalog null, schema null错误的一个原因
我在进行Mybatis调试时出现了下面的警告提示: Generation Warnings Occured   Table configuration with catalog null, schema null, and table 表名 did not resolve to any tables   Mybatis generator操作没有产生结果。 多处找资料发现在我的 ge...
分类:其他好文   时间:2014-12-15 09:03:37    阅读次数:901
VS中设置#define _CRT_SECURE_NO_WARNINGS的两种方式
1.我们在编译老的用C语言的开源项目如lua源包的时候,可能因为一些老的.c文件使用了strcpy,scanf等不安全的函数,而报警告和错误,而导致无法编译通过。2.此时我们有两种解决方案:a.在指定的源文件的开头定义:#define _CRT_SECURE_NO_WARNINGS (只会在该文件里...
分类:其他好文   时间:2014-12-13 21:37:42    阅读次数:754
【VC】warning C4996: 'XXXX': This function or variable may be unsafe.
关于VS系列使用 Unicode 格式产生以上警告: warning C4996: 'wcscpy': This function or variable may be unsafe. Consider using wcscpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help ...
分类:其他好文   时间:2014-12-12 11:41:51    阅读次数:892
HDU 2014
#define _CRT_SECURE_NO_WARNINGS#include typedef float ElementType;void Select_Sort(ElementType n[], int num);void Swap(ElementType *a, ElementType *b)...
分类:其他好文   时间:2014-12-08 22:59:14    阅读次数:306
HDU 2010
#define _CRT_SECURE_NO_WARNINGS#include int Is_SXH(int num);int main(){ int in1, in2; int temp = 0; int flag = 0; while (scanf("%d %d", &in1, &in2) !=...
分类:其他好文   时间:2014-12-07 23:02:33    阅读次数:156
HDU 2007
/*杭电ACM ID:2007*/#define _CRT_SECURE_NO_WARNINGS#include int main(){ int in1, in2, out1, out2; int temp = 0, min, max; while (scanf("%d %d", &in1, &in...
分类:其他好文   时间:2014-12-07 17:35:18    阅读次数:113
javat透明窗体问题(找不到com.sun.awt.AWTUtilities包)
Eclipse 默认把这些受访问限制的API设成了ERROR,而com.sun.awt.AWTUtilities提供的API是受限访问的。’ 因此只要把Windows-Preferences-Java-Complicer- Errors/Warnings里面的Deprecated and restricted API中的Forbidden references(access rules)选为Wa...
分类:编程语言   时间:2014-12-05 14:22:28    阅读次数:135
perl格式化模板
#!/usr/bin/env perl use warnings; use strict; use Getopt::Long; use FindBin qw($Bin); use File::Basename qw(basename); use File::Spec::Functions qw(rel2abs); ##### main program ##### my $mainPL = bas...
分类:其他好文   时间:2014-11-29 11:57:36    阅读次数:218
sqlserver使用OpenQuery或OPENROWSET遇到的问题
OpenQuery,OPENROWSET允许用户在链接服务器上查询.通过这种方法来得到查询的结果集. 1.在创建存储过程中,必须设置 SET ANSI_NULLS ON SET ANSI_WARNINGS ON (在查询分析器中执行,将默认激活这些设置) 2.定义...
分类:数据库   时间:2014-11-27 15:45:21    阅读次数:243
MYSQL 执行计划
Explain语法EXPLAIN SELECT ……变体:1. EXPLAIN EXTENDED SELECT ……将执行计划“反编译”成SELECT语句,运行SHOW WARNINGS 可得到被MySQL优化器优化后的查询语句 2. EXPLAIN PARTITIONS SELECT ……用于分....
分类:数据库   时间:2014-11-24 19:11:33    阅读次数:249
1040条   上一页 1 ... 97 98 99 100 101 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!