- (UIImageView *)rotate360DegreeWithImageView:(UIImageView *)imageView{ CABasicAnimation *animation = [ CABasicAnimation animationWithKeyPath: @"tran....
分类:
其他好文 时间:
2014-12-17 20:20:36
阅读次数:
269
/*========================事务==============================*/begin tran--开始事务 --开始写流程语句 --语句写完之后if @@ERROR>0rollback tran --回滚事务elsecommit tran--提交事务.....
分类:
数据库 时间:
2014-12-07 16:27:12
阅读次数:
222
--查了当前数据库是事务隔离级别
DBCC USEROPTIONS
【测试一:丢失更新】
--事务1
begin tran
select * from dbo.Test(nolock) where name = 'kk'
waitfor delay '00:00:05'
update T set info = 'A更改' from Test T(nolock) where name...
分类:
数据库 时间:
2014-11-26 14:22:15
阅读次数:
312
启动:
startActivity(intent);
overridePendingTransition(R.anim.tran_next_in, R.anim.tran_next_out);
退出:
@Override
public void finish() {
// TODO Auto-generated method stub
super.finis...
分类:
移动开发 时间:
2014-11-22 12:07:47
阅读次数:
179
登录: isql -Usa -Pykj123456 -Syaokj sybase数据库执行sql文件: isql -Usa -Pykj123456 -Syaokj -i create_table.sql -o test.log 清除缓存: dump tran master with no_log go dump transaction master with...
分类:
数据库 时间:
2014-11-20 13:50:14
阅读次数:
219
一、创建新用户 insert into mysql.user(Host, User, Password) values ("localhost", "newuser", password("123456")); 如果报错将my.ini或者my.cnf,查找 sql_mode="STRICT_TRAN...
分类:
数据库 时间:
2014-11-18 17:31:35
阅读次数:
289
动画在Material Design设计中给用户反馈放用户点击时,并且在程序用户界面中提供连贯的视觉。Material主题为按钮(Button)和activity的转换提供了一些默认的动画,在android5.0(api 21)和更高的版本,你可以自定义这些动画和创建一个新动画:
Touch feedback(触摸反馈)Circular Reveal(循环揭露效果)Activity tran...
分类:
移动开发 时间:
2014-11-14 00:16:05
阅读次数:
459
原文:SQL Server 已提交读快照 测试1. 打开数据库 已提交读快照 选项 2. 数据库 已提交读快照 模式下的测试 a) 测试表 Test b) 开启事务1,更新数据C2 = '200'(未提交) BEGIN TRAN UPDATE Test SET C2 = '200' WHERE C1...
分类:
数据库 时间:
2014-11-10 13:30:30
阅读次数:
201
http://blog.csdn.net/tclcaojun/article/details/6777022错误代码:ORA-01591错误原因:使用了分布式事务,造成这个问题的原因很多时候都是由于网络问题造成的解决办法:1.找到TRAN_IDSelect 'Rollback force '''||...
分类:
其他好文 时间:
2014-11-08 14:53:52
阅读次数:
223
Demo演示:Android L——Material Desgin特性中的RecyclerView,CardView,Floating Action Button,视图阴影轮廓,Activity transitions,Shared Elements Transition等等的综合应用...
分类:
移动开发 时间:
2014-11-07 06:20:12
阅读次数:
374