下面以添加ws2_32.lib文件为例方法一(直接添加代码):直接在.cpp文件中,添加#pragma comment(lib, "ws2_32.lib");即可。(ws2_32.lib即为你要添加的lib文件)方法二(在vs工具栏中添加):1.项目(project)-> TcpSrv属性(TcpS...
分类:
其他好文 时间:
2014-08-08 17:41:36
阅读次数:
191
一,新建模型时要注意选择DBMS类型 二,给表字段加注释,点击图标,勾选comment 三,指定建表时使用的编码和数据库引擎 工具栏-》database-》edit current DBMS 然后,选中:MYSQL50::Script\Objects\Table\Optio...
分类:
其他好文 时间:
2014-08-08 16:40:09
阅读次数:
354
-- 表的结构 `ecs_account_log`CREATE TABLE IF NOT EXISTS `ecs_account_log` (`log_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID号',`user_id...
分类:
数据库 时间:
2014-08-08 12:13:45
阅读次数:
295
在每次提交任务的时候需要描述一些批注信息,例如:请假流程提交的时候要描述信息为什么请假,如果领导驳回可以批注驳回原因等 1、添加批注 // 由于流程用户上下文对象是线程独立的,所以要在需要的位置设置,要保证设置和获取操作在同一个线程中 Authentication.se...
分类:
其他好文 时间:
2014-08-08 08:26:35
阅读次数:
515
这里用通俗的语言解释一下这个函数,就类似于opencv一样,要添加链接库函数,cv.lib等,要添加到附加依赖项,或者通过#pragma comment(lib,”cv.lib“)一样,然后才能包含头文件进行各种函数的调用。当然了,socket编程要调用各种socket函数,但是需要库Ws2_32....
分类:
其他好文 时间:
2014-08-08 01:30:54
阅读次数:
257
tag:标签。node:节点。txt:文本、文本文件。data:数据。concat:合并多个数组,合并多个字符串。inner:内部的。union:并,联合,合并。distinct:有差别的,明显的。lock:加锁,锁定。comment:评论,注释。style:样式。evaluation:评估。ver...
分类:
其他好文 时间:
2014-08-07 23:00:04
阅读次数:
246
Centos 安装FTP配置目录权限,iptables设置ftp服务 2012-07-06 admin Leave a comment Go to comments CentOS 安装vsftpd,设置Iptables 限制用户访问自己目录安装好vsftpd后,打开配置文件:[root@hex...
分类:
其他好文 时间:
2014-08-07 21:49:00
阅读次数:
596
离线处理+树状数组
//http://blog.csdn.net/zz_1215/
#pragma comment(linker, "/STACK:102400000,102400000")
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#inc...
分类:
其他好文 时间:
2014-08-07 19:07:11
阅读次数:
256
#include
#include
#include
using namespace std;
#pragma comment(lib,"wininet.lib")
void main()
{
DWORD byteread=0;
char buffer[100];
memset(buffer,0,100);
HINTERNET internetopen;
internetopen=Int...
分类:
Web程序 时间:
2014-08-07 15:52:10
阅读次数:
686
friend表结构
DROP TABLE IF EXISTS FRIEND;
create table friend(
uid bigint not null comment '用户标识',
friend_uid bigint not null comment '申请加为好友的用户标识',
sys_create_date datetime no...
分类:
数据库 时间:
2014-08-07 15:51:50
阅读次数:
272