预备操作本教程为卡刷方式。准备刷机工具adb和fastboot。sudoapt-get install adb fastboot //安装adb和fastboot工具包解锁说明:华为和三星手机需要解锁操作。不需要解锁的手机可跳过此步骤。首先从官网获取手机解锁码。将手机用usb连接上电脑,并...
分类:
系统相关 时间:
2014-12-17 16:03:24
阅读次数:
325
#include#includeint main(){ int k,x=0,y=0,i; char s[100]; while(scanf("%s",s)!=EOF) { x=0; y=0; k=strlen(s); f...
分类:
其他好文 时间:
2014-12-17 10:37:18
阅读次数:
162
在eclipse中运行Android程序默认是将程序安装到手机的Rom中,如果Rom空间不足,就会提示这个错误。
知道了原因后,解决方案有了,最简单的有如下两种:
1 删除一些应用,腾出更多的rom空间;
2 将程序安装到SD卡中,打开AndroidManifest.xml,添加如下配置:
android:installLocation="preferExternal">(添加...
分类:
移动开发 时间:
2014-12-16 22:45:14
阅读次数:
346
select count(*),t1.`name` from test_id t1INNER JOIN test_id t2on t1.id >= t2.idgroup by t1.id,t1.`name`HAVING count(*) < t1.idorder by t1.idlimit 1;se...
分类:
数据库 时间:
2014-12-16 13:28:14
阅读次数:
261
SELECT /*+ rule*/ a.sid, b.owner, object_name, object_type FROM v$lock a, all_objects b WHERE TYPE = 'TM' and a.id1 = b.object_id;查到的都是被锁的表SELECT * FR...
分类:
数据库 时间:
2014-12-16 11:33:58
阅读次数:
178
子查询(用来进行两表等之间的查询)***括号里面的查询只能显示一个列的信息select *from haha where age in (select MAX(age) from haha where bumen = '销售部')and bumen in (select bumen from hah...
分类:
数据库 时间:
2014-12-15 17:12:24
阅读次数:
197
在几千条记录里,存在着些相同的记录,如何能用SQL语句,删除掉重复的呢?谢谢!1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断select*frompeoplewherepeopleIdin(selectpeopleIdfrompeoplegroupbypeopleIdh...
分类:
其他好文 时间:
2014-12-15 15:01:12
阅读次数:
141
dede cms 文章命名规则:修改include/helpers/channelunit.helper.php //修行数190 $dsql->SetQuery("SELECT writer FROM #@__archives ORDER BY id DESC LIMIT 0,1");
$dsql->Execute(‘hw‘);
$hotword = "";
whi...
分类:
其他好文 时间:
2014-12-15 10:37:30
阅读次数:
165
select DISTINCT human.tid,log_pv_change.systafftid from human left join human_user on human.tid=human_user.hid left join human_house on human.tid = hu...
分类:
其他好文 时间:
2014-12-15 10:14:40
阅读次数:
176