SELECT
c.relname,
col_description (a.attrelid, a.attnum) AS COMMENT,
format_type (a.atttypid, a.atttypmod) AS TYPE,
a.attname AS NAME,
a.attnotnull AS notnull
FROM
aty_class AS c,...
分类:
数据库 时间:
2015-03-07 15:46:51
阅读次数:
125
需求:找到所有的含有 n_jbfy 的表名
SELECT
c.relname,
col_description (a.attrelid, a.attnum) AS COMMENT,
format_type (a.atttypid, a.atttypmod) AS TYPE,
a.attname AS NAME,
a.attnotnull AS notnull
FROM
...
分类:
数据库 时间:
2015-03-07 15:45:16
阅读次数:
166
在main(WinMain、tWinMain)函数之前做一个数据共享段:
#pragma data_seg("Shared")
int volatile g_lAppInstance = 0;
#pragma data_seg()
#pragma comment(linker,"/section:Shared,RWS")
在进入到主函数中对那个变量做判断:
if (0 == g_...
??
Notes
备注
A note that renders a comment has no semantic impact, meaning that its contents do not alter the meaning of the model to which it is attached. This is why notes are used to spe...
分类:
其他好文 时间:
2015-03-05 08:06:30
阅读次数:
165
//删除c语言程序中所有的注释语句,要正确处理带引号的字符串与字符串常量#include using namespace std;#define MAXLINE 1000void rcomment(int c);void in_comment(void);void deleteTail(void);...
分类:
编程语言 时间:
2015-03-04 22:28:49
阅读次数:
198
privateSet<PresentProductSociety>PPSSet;//实体属性<setname="PPSSet"><comment>一方配置</comment><keycolumn="society_id"/><one-to-manyclass="cn.pojo.PresentProductSociety"/></set>privateSocietysociety;//实体属性<ma..
分类:
Web程序 时间:
2015-03-04 19:29:46
阅读次数:
164
#include
#include
#include
#include
#include
#include
#include
#include
#include
#pragma comment(linker, "/STACK:1024000000")
#define EPS (1e-8)
#define LL long long
#define ULL unsigned lon...
分类:
其他好文 时间:
2015-03-03 16:40:14
阅读次数:
120
调试Perl程序时,使用Smart::Comment模块,追踪代码的变量值,非常方便有效。代码示例:1 #!/usr/bin/perl2 3 use Smart::Comments;4 # no Smart::Comments;5 my $var=@ARGV[0];6 7 ### $var;执行代码...
分类:
其他好文 时间:
2015-03-02 18:16:38
阅读次数:
125
CREATE TABLE `activitybaseprop` ( `ID` smallint(6) NOT NULL DEFAULT '0' COMMENT '活动ID 1:签到奖励 2:升级福利 3:天天美食 4:月卡系统 5:激活码兑换 6:分享 7:问卷调查 8:登录有礼', `Name.....
分类:
其他好文 时间:
2015-02-26 18:21:27
阅读次数:
231
传送门:Girls' research题意:求最长回文串并输出位置及转换后的字符串。分析:manacher算法算出最长回文串后记录中心位置,然后再转换回原字符串的起始和结束位置。#pragma comment(linker,"/STACK:1024000000,1024000000")#includ...
分类:
其他好文 时间:
2015-02-25 16:48:34
阅读次数:
166