摘要: 修改mysql的引擎为INNODB,可以使用外键,事务等功能,性能高。修改my.ini,在[mysqld]下加上 default-storage-engine=INNODB其中红色字体部分是要指定的引擎名称。用sql语句修改已经建成表的引擎:alter table tableName type=InnoDB 下面贴出我的my.ini文件供参考(http://www.my400800.cn):[mysqld]basedir=C:\Program Files\VertrigoServ\Mysql\datadir=C:\Program Files\VertrigoServ\Mysql\data\po 阅读全文
posted @ 2011-07-26 17:25 ljlxyf 阅读(387) 评论(0) 推荐(0)
摘要: 今天在用 jquery 的attr 方法设定 iframe的src属性的时候遇到了一个奇怪的为题,现在把问题及解决方面写出来,让遇到同样问题的人不要在走弯路。问题描述:html代码如下: <iframe src="http://www.my400800.cn" id="addOrUpdateIframe" style="width:870px;height:450px;" border="0" scrolling="yes" ></iframe>我用 jquery 的at 阅读全文
posted @ 2011-07-26 09:24 ljlxyf 阅读(627) 评论(1) 推荐(0)