对比发现 int bigint smallint 和 tinyint
类型,如果创建新表时没有指定 int(M) 中的M时,默认分别是 :int ------- int(11)bigint -------
bigint(20)smallint ------- smal...
分类:
数据库 时间:
2014-04-28 18:54:25
阅读次数:
4342
这道题也很简单,只要把二叉树按照宽度优先的策略遍历一遍,就可以解决问题,采用递归方法越是简单。下面是AC代码:
1 /** 2 * Sum Root to Leaf Numbers 3 * 采用递归的方法,宽度遍历 4 */ 5 int result=0; 6...
分类:
其他好文 时间:
2014-04-28 10:05:40
阅读次数:
682
本次实验,是在自己的电脑上使用APMServ5.2.6部署Discuz2.X论坛下,对该论坛的数据库MySQL5.1进行性能测试的,下面讲述LoadRunner在设计场景时,如何利用siteScope工具监控MySQL数据库性能:一、在网上下载siteScope
我在网上搜了很久,发现siteSco...
分类:
数据库 时间:
2014-04-28 09:36:13
阅读次数:
3451
原文地址:http://www.php100.com/html/webkaifa/database/Mysql/2010/0409/4279.html索引是快速搜索的关键。MySQL索引的建立对于MySQL的高效运行是很重要的。下面介绍几种常见的MySQL索引类型。在数据库表中,对字段建立索引可以大...
分类:
数据库 时间:
2014-04-27 21:16:01
阅读次数:
2114
自己写的最新版本extjs4.2的树结点的操作,记录一下,以后可能会用到。
var tree = new Ext.tree.TreePanel({
flex: 1,
animate: true,
autoScroll: true,
anchor: '100% 93%',
store: new Ext.data.TreeStore({
root:{
expanded: true...
分类:
Web程序 时间:
2014-04-27 19:00:19
阅读次数:
1278
在Linux上启动VNC Server(如果没安装的话那就先安装)
执行vncserver命令:
[root@linux root]# vncserver
You will require a password to access your desktops.
Password: ----为了不想任何人都可以任意遥控此计算机。因此当第
Verify: ---1次启动VNC se...
分类:
系统相关 时间:
2014-04-27 18:33:08
阅读次数:
1009