delete from fl where yy = 2014 and mm = 6 and bz 5;delete from cpzqsp where cllx > '70';delete from cpzgbh where status < '31';delete from cpdwbh wh.....
分类:
其他好文 时间:
2014-07-11 22:56:27
阅读次数:
249
mysql> show processlist; 如果是root帐号,你能看到所有用户的当前连接。如果是其它普通帐号,只能看到自己占用的连接。show processlist;只列出前100条,如果想全列出请使用show full processlist; mysql>show status;mys...
分类:
数据库 时间:
2014-07-11 19:14:02
阅读次数:
286
引自:http://www.w3cplus.com/css/front-end-web-development-quiz.htmlQ7:下面代码弹出值是什么?x = 1;function bar() { this.x = 2; return x;}var foo = new bar();...
分类:
Web程序 时间:
2014-07-11 12:37:11
阅读次数:
222
群里有人问如何做到def foo(): passclass Bar(object): passBar.set_instance_method(foo)b = Bar()b.foo()这个其实还是比较简单的, 只要写个函数给类设置属性即可, 可根据需求是否用函数包装下, 或者用static...
分类:
编程语言 时间:
2014-07-10 17:05:22
阅读次数:
190
关于这个错误:Subversion detected an unsupported working copy version while checking the status of 'XXXX'. Most likely you upgraded another Subversion client...
分类:
其他好文 时间:
2014-07-09 19:13:25
阅读次数:
345
设计工具栏Action Bar(订制工具栏类型) 工具栏给用户提供了一种熟悉和可预测的方式来执行某种动作和操纵应用程序,但是这并不意味着它就需要和其他的应用程序看起来一样的。如果想设计工具栏以使得它能更适合产品的商标,使用android的style和theme资源可以很容易做到点。 androi.....
分类:
移动开发 时间:
2014-07-09 15:42:29
阅读次数:
233
Action Bar主要功能包含:
1. 显示选项菜单
2. 提供标签页的切换方式的导航功能,可以切换多个fragment.
3. 提供下拉的导航条目.
4. 提供交互式活动视图代替选项条目
5. 使用程序的图标作为返回Home主屏或向上的导航操作。
首先说下,使用OverFlow的时候需要在onCreate()函数中调用如下方法:
privat...
分类:
移动开发 时间:
2014-07-09 10:32:01
阅读次数:
313
大家都理解这是什么,正常的写法如下: if (status == true) { $("#minDelistStr").val(totalAmount);// 去掉首部的“,”并写入到货品id串中 $("#minDelistStr").attr("readonly",true); } 可是在网上我居然看见有人说写成:jQuery( $("#id").attr("readonly":"reado...
分类:
Web程序 时间:
2014-07-09 10:27:46
阅读次数:
254
有没有经常敲错命令?比如git status?status这个单词真心不好记。如果敲git st就表示git status那就简单多了,当然这种偷懒的办法我们是极力赞成的。我们只需要敲一行命令,告诉Git,以后st就表示status:$ git config --global alias.st st...
分类:
其他好文 时间:
2014-07-08 13:35:19
阅读次数:
242
今天在测试过程中,出现了这样一个bug,分别有两种情景:
(前提是:app是基于UINavigationController构建的)
1、从Controller-A中push进来B。在B中点击返回,返回的界面为黑色一片。再做返回操作就crash了。
2、从Controller-A中push进入B,此时B中tableview出现错位现象,tableview被navigationbar覆盖了...
分类:
其他好文 时间:
2014-07-08 10:33:48
阅读次数:
218