基于mysql数据库整合框架时出现的数据库字符编码的问题. 
解决办法:数据库驱动的版本太高,换成低版本的,主要还是你的架包太不是最新版本,出现的兼容性问题。
                            
                            
                                分类:
编程语言   时间:
2014-05-10 18:13:53   
                                阅读次数:
473
                             
                    
                        
                            
                            
                                在C++中用到map时,如果KEY是自定义的struct,那么需要自己定义比较函数。因为只有基本类型有默认的比较方法。定义的方法有两种,一是在作为key的struct中,重载操作符less( 
UrlMap; UrlKey stKey; stKey.dwBussID = 1; stKey.dwV...
                            
                            
                                分类:
编程语言   时间:
2014-05-10 06:10:26   
                                阅读次数:
332
                             
                    
                        
                            
                            
                                在下例中,演示了链表的各种操作
#include 
using namespace std;
typedef struct Node
{
    int data; //数据域
    struct Node * next; //指针域
}NODE, *PNODE;  //NODE相当于struct Node, PNODE相当于struct Node *
PNODE CreateList()...
                            
                            
                                分类:
其他好文   时间:
2014-05-10 04:29:49   
                                阅读次数:
263
                             
                    
                        
                            
                            
                                Redis的client设计如下:
/* With multiplexing we need to take per-clinet state.
 * Clients are taken in a liked list. */
typedef struct redisClient {
    int fd;
    redisDb *db;
    int dictid;
    sds que...
                            
                            
                                分类:
其他好文   时间:
2014-05-10 03:44:21   
                                阅读次数:
292
                             
                    
                        
                            
                            
                                题目:意思就是判断给定的几条线段是否有相交的。
方法:模版吧,有空在来细细学习。
代码:
#include 
#include 
using namespace std;
struct   Point
{
    double   x,y;
};
struct   LineSeg
{
    Point   a,b;
};
double Cross(Point a, Point b, Poi...
                            
                            
                                分类:
其他好文   时间:
2014-05-10 03:39:07   
                                阅读次数:
326
                             
                    
                        
                            
                            
                                Populating Next Right Pointers in Each 
NodeGiven a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode 
*right; TreeLi...
                            
                            
                                分类:
其他好文   时间:
2014-05-10 00:32:56   
                                阅读次数:
326
                             
                    
                        
                            
                            
                                代码段1: 1 #include 2 #include 3 4 5 float 
mul_ints(int x, int y) { return ((float)x) * y; } 6 struct int_div { 7 float 
operator()(int x, int y)...
                            
                            
                                分类:
编程语言   时间:
2014-05-09 23:38:56   
                                阅读次数:
487
                             
                    
                        
                            
                            
                                #include 
#include 
#include 
#ifndef VIRTUAL
#define VIRTUAL
#endif
#ifndef DELETE
#define DELETE(X)	do { free(X);X = NULL; } while(0)
#endif
#define NEW(TYPE,pInstance,SUBTYPE)	struct TYPE* pInst...
                            
                            
                                分类:
编程语言   时间:
2014-05-09 22:29:48   
                                阅读次数:
455
                             
                    
                        
                            
                            
                                BFS。 1 #include 2 #include 3 #include 4 
#include 5 using namespace std; 6 7 #define INF 0x3fffffff 8 9 typedef struct 
node_st {10 int x, y, ...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 20:18:48   
                                阅读次数:
339
                             
                    
                        
                            
                            
                                在上一篇中,使用scrapy修改源IP发送请求的最后我们提到由于hosts文件不支持正则,会导致我们的随机域名DNS查询失败。是用DNS服务器可以解决这个问题,下面是我用gevent写的小工具,很简单。我们只拦截匹配的A记录,然后发送DNS Response,如果不匹配,那么我们服务器就是一个DNS代理,转发请求。# -*- coding=utf-8 -*-
import struct
from...
                            
                            
                                分类:
编程语言   时间:
2014-05-09 13:49:34   
                                阅读次数:
560