1.问题描述: 在执行 create?table?goodsAndProps
(
???goodsId??????????????varchar(128)?not?null,
???propsId??????????????varchar(128)?not?null,
???propsVa...
分类:
数据库 时间:
2015-10-26 13:58:28
阅读次数:
275
mysql最大连接数据说默认是100,貌似连接数超过这个值时,其它连接无法达成并提示Error: Too many connections Errno.: 1040。 修改mysql最大连接数的方法如下: 1,修改/etc/my.cnf 在mysqld下添加 max_connecti...
分类:
数据库 时间:
2015-10-24 14:27:26
阅读次数:
206
原文 In 1963 a Lancaster bomber crashed on Wallis island, a remote place in the south Pacific, a long way west of Samoa. The plane wasn‘t too badly damaged, but over the years, the crash was forgot...
分类:
其他好文 时间:
2015-10-19 19:32:54
阅读次数:
193
前言:今天在调试页面的时候,firebug突然就报了“too much recursion”,真是莫名其妙,然后把页面元素不断的删减,调试方得出了一种可能出错的原因。错误状况账户
<input class="form-control" type="text" autofocus name="username" placeholder="请输入会员编号" autocomp...
分类:
其他好文 时间:
2015-10-16 18:59:05
阅读次数:
103
1. I see.我明白了。2. I quit! 我不干了!3. Let go! 放手!4. Me too.我也是。5. My god! 天哪!6. No way! 不行!7. Come on.来吧(赶快)8. Hold on.等一等。9. I agree。我同意。10. Not bad.还不错。1...
分类:
其他好文 时间:
2015-10-15 10:04:49
阅读次数:
248
使用rm * -f删除缓存目录文件时,报如下错误-bash: /bin/rm: Argument list too long提示文件数目太多。解决的办法是使用如下命令:ls | xargs -n 10 rm -fr ls输出所有的文件名(用空格分割) xargs就是将ls的输出,每10个为一组(以空...
分类:
其他好文 时间:
2015-10-13 15:12:55
阅读次数:
128
The file named errorlog is too largeThe file named errorlog is too large1 ProblemOne day, when I install android-sdk, I found that one error "NO space...
分类:
其他好文 时间:
2015-10-11 14:10:17
阅读次数:
153
我之前遇到过这种问题,有些网站是这样的,他判断cookie里面是否有某个值,如果没有就定向到另外一个页面去把COOKIE的值设置了,然后再跳转回来,但是如果我们通过HttpURLConnection去的话,cookie里面一直都没有...
分类:
其他好文 时间:
2015-10-11 12:57:34
阅读次数:
170
zipalign.exe是Android自带的一个档案整理工具,它可以用于优化APK安装包,从而提升Android应用与系统之间的交互效率,提升应用程序的运行速度。操作步骤:1.在命令行窗口输入如下命令:zipalign -f -v 4 HelloWorld_crazyit.apkHelloWorl...
分类:
其他好文 时间:
2015-10-11 12:46:25
阅读次数:
123
错误如图:解决方案:app.js添加var bodyParser = require('body-parser');app.use(bodyParser.json({limit: '50mb'}));app.use(bodyParser.urlencoded({limit: '50mb', exte...
分类:
Web程序 时间:
2015-10-09 21:20:38
阅读次数:
176