MySQL事务隔离级别为"REPEATABLE-READ"下的"幻读"现象 关于mysql命令行中事务控制的语句见该文章:http://my.oschina.net/xinxingegeya/blog/296459 本片参考文章:http://blog.csdn.net/jiao_fuyou/article/det...
分类:
数据库 时间:
2014-07-30 17:58:24
阅读次数:
397
新建表t1 CREATE?TABLE?`t1`?(
??`a`?int(11)?NOT?NULL,
??`b`?int(11)?DEFAULT?NULL,
??PRIMARY?KEY?(`a`)
)?ENGINE=InnoDB?DEFAULT?CHARSET=latin1; 查看mysql系统级别的事务隔离级别: my...
分类:
数据库 时间:
2014-07-30 15:06:54
阅读次数:
556
博客即日起停止更新,新博客地址http://my.oschina.net/sucre/blog欢迎大家来访
分类:
其他好文 时间:
2014-07-30 15:02:55
阅读次数:
150
[mysql@st2-cloudpos-14mysql]$catmy-pos.cnf[client]port=3306socket=/home/mysql/mysql/mysql/mysqld.sock#prompt="(\u@\h\\R:\\m:\\s)[\d]>"default-character-set=utf8[mysqld_safe]user=mysqlnice=0#ledir=/usr/local/mysql/libexec[mysqld]server-id=1port=3306pid-fi..
分类:
其他好文 时间:
2014-07-30 14:59:54
阅读次数:
248
restrcit属性说明 restrict: EACM中的任意一个之母。它是用来限制指令的声明格式的。 E?-?元素名称:<my-directive></my-directive>
A?-?属性:?<div?my-directive="exp">?</div>
C?-?类名:<div?class...
分类:
其他好文 时间:
2014-07-30 12:38:04
阅读次数:
199
注意:在编写代码前,请确保该Web目录下的"WEB-INF/lib"下包含jdom.jar包!
<%
// 所有的XML元素都是Element的实例,根元素也不例外
Element rootElement=new Element("users");
// 以根元素作为参数创建Document对象。一个Document只有一个根,即root元素。
Document myD...
分类:
Web程序 时间:
2014-07-30 12:26:23
阅读次数:
242
基本输入输出
5.1基本输出
print XXX //同一行输出
println XXX //换行输出
输出字符串:
def message ="My name is Michael"
println("here is :"+${message})
输出列表和映射
def numbers =[11,12,13,14]
println "Numbers:${nu...
分类:
其他好文 时间:
2014-07-30 10:08:13
阅读次数:
287
一 Words 1 foible 小缺点,小癖好 e.g. You could do Ebay,or dating or indulge 纵容,沉溺于another foible of choice.你可以上eBay购物,或者约会,或者纵容另外一个弱点。 2 obnoxious 讨厌的 eg. My...
分类:
其他好文 时间:
2014-07-30 07:39:03
阅读次数:
274
Author :Jeffrey My Blog:http://blog.csdn.net/gueter/引言 HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展。目前在WWW中使用的是HTTP/...
分类:
其他好文 时间:
2014-07-30 00:36:22
阅读次数:
382
@ 把老数据库中的某个表倒出成sql文件 $mysql -uroot -p my_db > my_db.sql (输入密码)@ 在新环境中导入 $sudo apt-get install mysql-server -y (期间要初始化root用户的密码) $mysql ...
分类:
数据库 时间:
2014-07-29 21:37:12
阅读次数:
342