摘要: https://cloud.tencent.com/developer/ask/59833 sudo -u postgres psql -U postgres -d postgres -c "alter user postgres with password 'password';"sudo -u 阅读全文
posted @ 2021-04-07 17:21 Billy.rao 阅读(557) 评论(0) 推荐(0) 编辑
摘要: http://www.cppblog.com/cppx/archive/2011/02/28/140794.html 一个简单的PostgreSQL数据库连接池实现 https://blog.csdn.net/supmana/article/details/109259053 C++实现数据库连接池 阅读全文
posted @ 2021-04-06 21:16 Billy.rao 阅读(33) 评论(0) 推荐(0) 编辑
摘要: https://www.yiibai.com/postgresql/ PostgreSQL教程 https://www.yiibai.com/postgresql/postgresql_c_cpp.html C/C++连接PostgreSQL数据库 https://www.jianshu.com/p 阅读全文
posted @ 2021-04-01 22:51 Billy.rao 阅读(455) 评论(0) 推荐(0) 编辑
摘要: S6aMME – HSS完成用户位置信息的交换和用户签约信息的管理,传送控制面信息DiameterMME:主要负责信令处理及移动性管理,功能包括:NAS信令及其安全;跟踪区域(Tracking Area)列表的管理;P-GW和S-GW的选择;跨MME切换时对于MME的选择;在向2G/3G接入系统切换... 阅读全文
posted @ 2015-01-30 16:30 Billy.rao 阅读(315) 评论(0) 推荐(0) 编辑
摘要: windows.h和winsock2.h有类型重定义我是知道的,本来就一个库来说没问题,把winsock2放到windows.h前或先定义WIN32_LEAN_AND_MEAN都能解决问题但现的出了问题,自己写的一个库里要用到ws2tcpip,这个头文件第一个包含的头文件就是winsock2.h把它... 阅读全文
posted @ 2014-11-26 09:04 Billy.rao 阅读(11070) 评论(1) 推荐(0) 编辑
摘要: http://blog.chinaunix.net/uid-17019762-id-3152012.html作为一个有强迫症的人,实在是受不了warning 的存在 这个warning是由于初始化顺序引起的,//会出现warning 的代码!classcInit{public:cInit(std::... 阅读全文
posted @ 2014-09-05 11:24 Billy.rao 阅读(6792) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/okadler0518/article/details/4962340coutusingnamespacestd;intmain(void){chardata[8]={0x68,0x04,0x43,0x00,0x00,0x00};for(inti=0;i<8... 阅读全文
posted @ 2014-08-29 09:47 Billy.rao 阅读(36782) 评论(0) 推荐(0) 编辑
摘要: http://bbs.csdn.net/topics/250068243char *strcpy(char* dest, const char *src);用unsigned char编译会出错U8 dest[5];U8 src[5] = {0x01,0x02,0x03,0x04,0x05};//加... 阅读全文
posted @ 2014-08-15 12:21 Billy.rao 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: http://zhidao.baidu.com/link?url=-YJjz3U0fd_eSW9eLa8ankGo_QbyOOOaKYWyAY9g4mKWQj0DN6l12OSLJz24U8jCwo18MiBCzwpkFLoDM02yv_printf的格式控制的完整格式:% - 0 m.n l或h ... 阅读全文
posted @ 2014-08-15 11:35 Billy.rao 阅读(5498) 评论(0) 推荐(3) 编辑
摘要: http://bbs.csdn.net/topics/360132089BYTEdata[4]={0x00,0x00,0xe6,0x00};//第一句UINTa11=*(UINT*)data;//第二句al1表示成0x0000e600al1=data[0]<<24+data[1]<<16+data[... 阅读全文
posted @ 2014-08-15 11:20 Billy.rao 阅读(1638) 评论(0) 推荐(0) 编辑