Linux操作系统性能调优(SuSE Enterprise Linux 和 Redhat Enterprise Linux)http://os.51cto.com/art/201303/384818_all.htm
分类:
系统相关 时间:
2014-06-24 10:18:56
阅读次数:
238
之前用的代码是left:-100%;-webkit-transition:all 5s ease;->left:0;测试部分浏览器效果还是不错的,但是还有另外一部分浏览器无敌卡。经同事提点,换了另外一种方式-webkit-transform:translateX(-100%);-webkit-tra...
分类:
移动开发 时间:
2014-06-24 10:08:04
阅读次数:
276
中文网站:http://extjs.org.cn/英文网站:http://www.sencha.com/products/extjs/1、简介 extJS是一种主要用于创建前端用户界面,是一个基本与后台技术无关的前端ajax框架。2、简单使用 需要这些包的支持:ext-all.css,ext-all...
分类:
Web程序 时间:
2014-06-24 10:07:21
阅读次数:
294
DescriptionChosen Problem Solving and Program design as an optional course, you are required to solve all kinds of problems. Here, we get a new proble...
分类:
其他好文 时间:
2014-06-24 09:58:37
阅读次数:
236
2014-06-20 BaoXinjian一、摘要手工指定SQL语句的执行计划1. hints是oracle提供的一种机制,用来告诉优化器按照我们的告诉它的方式生成执行计划。我们可以用hints来实现:1) 使用的优化器的类型2) 基于代价的优化器的优化目标,是all_rows还是first_row...
分类:
数据库 时间:
2014-06-23 08:37:37
阅读次数:
1050
2014-06-20 BaoXinjian一、与权限相关的字典ALL_COL_PRIVS表示列上的授权,用户和PUBLIC是被授予者ALL_COL_PRIVS_MADE表示列上的授权,用户是属主和被授予者ALL_COL_RECD表示列上的授权,用户和PUBLIC是被授予者ALL_TAB_PRIVS表...
分类:
数据库 时间:
2014-06-23 08:19:40
阅读次数:
340
1 --模拟数据 2 IF OBJECT_ID('tempdb..#t')>0 DROP TABLE #t 3 SELECT * INTO #t 4 FROM ( 5 SELECT '1' id,2030 g,265 h, 830 k,'g*h+h*k' gs,0 tt 6 UNION ALL 7....
分类:
数据库 时间:
2014-06-23 07:05:03
阅读次数:
377
PHP如何防止SQL注入及开发安全[php]function inject_check($sql_str) {$check=eregi('select|insert|update|delete|\'|\/\*|\*|\.\.\/|\.\/|union|into|load_file|outfile',...
分类:
数据库 时间:
2014-06-23 06:07:14
阅读次数:
317
默认情况下是不允许在远程登录mysql数据库的使用一下命令可以改变现状://更改登录规则,把所有的权限都给root这个账户,%是指在任何地方都可以登录,‘123456789’是登录密码grant all privileges on *.* to 'root'@'%' identified by '1...
分类:
数据库 时间:
2014-06-22 23:42:28
阅读次数:
248
http://guides.rubyonrails.org/routing.html#crud-verbs-and-actionscreates seven different routes in your application, all mapping to thePhotoscontrolle...
分类:
其他好文 时间:
2014-06-22 23:33:47
阅读次数:
330