最近dropdatabasepai;报错ERROR1010(HY000):Errordroppingdatabase(can‘trmdir‘./pai‘,errno:39)我就想把库文件直接删除试试,于是rm-rf/usr/local/mysql/data/pai然后我又showdatabases;结果还有pai库于是dropdatabasepai;ERROR1010(HY000):Errordroppingdatabase(can‘trmdir‘..
分类:
数据库 时间:
2014-08-05 14:27:20
阅读次数:
235
常用标准库:
assert.h:断言,包含assert宏。可以进行自我检查
ctype.h:字符处理,字符的分类,大小转换
errno.h:错误信息处理
float.h:浮点数特性
limits.h:整数的大小,提供了描述整数类型的宏
lcale.h:本地化
math.h:数学函数
setjmp.h:跳转
signal.h:信号处理
stdarg.h:可变长参数处理
stdd...
分类:
其他好文 时间:
2014-08-05 11:13:29
阅读次数:
264
root@node1glance]#su-s/bin/sh-c"glance-managedb_sync"glanceTraceback(mostrecentcalllast):File"/usr/bin/glance-manage",line10,in<module>sys.exit(main())File"/usr/lib/python2.6/site-packages/glance/cmd/manage.py",line253,inmainlog.setup(‘glance‘)File"/u..
最近在实习公司学习使用python做web自动化测试,其中使用到httplib这个模板,主要用于与待测试界面建立HTTP连接,发送数据请求,接收请求状态码和查询数据,验证功能。但是新版本的web界面改成使用https协议,原来的测试用例都变成无法跑通的状态。...
分类:
编程语言 时间:
2014-08-02 21:02:24
阅读次数:
646
1. c++中string到int的转换1) 在C标准库里面,使用atoi:#include #include std::string text = "152"; int number = std::atoi( text.c_str() ); if (errno == ERANGE) //可能是s....
分类:
编程语言 时间:
2014-07-31 19:48:27
阅读次数:
294
备注:出现这个问题同时会造成论坛注册,登录和发帖时等页面无法跳转(APP1运行不正常)案例:UCenterinfo:MySQLQueryErrorSQL:SELECT*FROM[Table]notelistWHEREclosed=‘0‘ANDapp1<‘1‘ANDapp1>‘-5‘LIMIT1Error:Unknowncolumn‘app1‘in‘whereclause‘Errno:1054分析:错误是..
分类:
数据库 时间:
2014-07-28 00:44:40
阅读次数:
301
/**
*发送一个异步http协议的Get请求,不用关心结果
*@param$url
*@param$errno
*@param$errstr
*@param$time_out
*/
staticpublicfunctiongetAsn($url,$errno=‘‘,$errstr=‘‘,$time_out=5){
//移除url中的空格,如果可以格式化url,或许会更好
$url=str_replace(‘‘,‘‘,$url);
..
分类:
Web程序 时间:
2014-07-26 03:13:17
阅读次数:
262
1:启动MongoDB2014-07-25T11:00:48.634+0800 warning: Failed to connect to 127.0.0.1:27017, reason: errno:10061 由于目标计算机积极拒绝,无法连接。2:添加一配置文件##数据文件dbpath=E:\r...
分类:
数据库 时间:
2014-07-25 14:06:41
阅读次数:
330
正常通信的情况下,send函数发送成功会返回发送数据的字节数。当有错误发生时,send返回-1,全局变量errno被设置。很多情况下,send返回-1是由于连接被对端关闭(对端发送了RST或者FIN包),这种情况errno会被设置为ECONNRESET(Connection reset by pee...
分类:
其他好文 时间:
2014-07-24 22:54:43
阅读次数:
1722
ferror
ferror()用来检查参数stream所指定的文件流是否发生了错误情况
未出错,返回0;出错,返回非零值
perror
将上一个函数发生错误的原因输出到标准错误(stderr). 参数s所指的字符串先打印, 后面加上错误的原因字符串. 此错误原因依照全局变量errno来决定
...
分类:
其他好文 时间:
2014-07-19 13:48:19
阅读次数:
189