<layoutAnimationxmlns:android="http://schemas.android.com/apk/res/android"
android:delay="30%"
android:animationOrder="reverse"
android:animation="@anim/slide_right"/>
<setxmlns:android="http://schemas.android.com/apk/res/android"
android:interpol..
分类:
移动开发 时间:
2015-03-20 18:51:22
阅读次数:
146
一、使用VMware虚拟机部署Swift开发环境所需工具: Vmware Workstation 10.0虚拟机软件 VM安装Mac解锁工具Unlock 苹果操作系统(Mac OS X Mavericks 10.9.4) 下载地址:http://pan.baidu.com/s/1qWLkffQ 密码...
分类:
系统相关 时间:
2015-03-20 18:30:00
阅读次数:
249
首先启动sqlplus输入用户名:sqlplus / as sysdba密码空缺如果用户被锁定,记得加上SQL> alter user dbsnmp account unlock;User altered.然后修改密码SQL> alter user dbsnmp identified by dbs....
分类:
数据库 时间:
2015-03-19 21:43:29
阅读次数:
166
使用Windows的控制台(程序|运行,输入cmd打开)。在命令行下,输入sqlplus/nolog,回车,出现SQL>命令提示符,然后按下面的顺序输入命令: SQL>conn/as sysdba SQL>alter user scott account unlock; SQL>disconnect...
分类:
数据库 时间:
2015-03-18 10:19:29
阅读次数:
534
查询现有数据库:select name from V$database;解锁用户scott:alter user scott account unlock;普通用户连接:conn scott默认密码:tiger普通管理员:system/system超级管理员:Sys/sys断开连接:disconne...
分类:
数据库 时间:
2015-03-17 20:02:42
阅读次数:
318
问题处理借鉴至网上的内容
重新做主从,完全同步
在主库新建一张表后,在slave 段发现数据没有同步过去。
mysql version:5.6.10
os :rhel 5.6
解决步骤如下:
1.主库进行锁表,防止数据写入
mysql> flush tables with read lock;
解锁命令:
Mysql> unlock tables;
2.进行数...
分类:
数据库 时间:
2015-03-17 12:31:28
阅读次数:
178
At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door...
分类:
其他好文 时间:
2015-03-16 16:06:29
阅读次数:
153
想把论坛和博客上所有关于mysql的都看一遍,死磕到底看到关于数据库快照的东西。。。。。。。不懂,百度。。。。。。然后就跑题了,看到了表锁这种东西unlock tables;用来锁定表。。。。。mysql> insert into new values('haha'); ERROR 1136 (21...
分类:
数据库 时间:
2015-03-13 20:41:17
阅读次数:
282
今天闲得蛋疼,重构了之前写的微信翻页效果。先上地址,觉得可以给颗星星,觉得有问题请大力吐槽。github:https://github.com/skyweaver213/slide3个demo地址:http://skyweaver213.github.io/slide/widget/slide1/s...
分类:
微信 时间:
2015-03-12 18:48:25
阅读次数:
2886
定义 Activity A,Activity B。Activity.overridePendingTransition 是在 A 启动 B 时定义这个过程中用什么动画的。常见三种动画形式: 1) A slide up B still, 2) A disapper B slide up, 3) A a...
分类:
其他好文 时间:
2015-03-12 06:17:11
阅读次数:
209