摘要:
// 创建命名空间Articlenamespace Article;class Comment { } // 创建命名空间MessageBoardnamespace MessageBoard;class Comment { } //调用当前空间(MessageBoard)的Comment类$comm 阅读全文
摘要:
CREATE TABLE 'iDayAuth'( 'openid' VARCHAR(16) NOT NULL , 'iStamp' INT(10) NOT NULL, 'iDayAuth' SMALLINT NOT NULL DEFAULT "3" ) $cSql = sprintf("UPDATE 'iDayAuth' SET `iDayAuth`= 3,`iStamp... 阅读全文
摘要:
RANGE表分区 CREATE TABLE `tbUser` ( `iUin` bigint(20) NOT NULL, `iLevel` int(4) NOT NULL, PRIMARY KEY (`iUin`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk COMMENT='用户表' PARTITION BY RANGE (MOD(iUin,10))( ... 阅读全文
摘要:
#向emp表中插入记录(海量的数据) delimiter $$ drop procedure insert_emp $$ create procedure insert_emp(in start int(10),in max_num int(10)) begin declare i int default 0; set autocommit = 0; repeat set ... 阅读全文
摘要:
cookie 由于本地环境只有FF下支持cookie,请在FF下进行测试 阅读全文
摘要:
继承 阅读全文
摘要:
阅读全文
摘要:
拖拽 阅读全文
摘要:
1 2 3 4 5 6 7 8 由于oDiv.style只能获取到行间样式,非行间样式需要用到currentStyle 9 10 18 33 34 阅读全文
摘要:
只能输入数字的输入框 阅读全文
摘要:
事件对象 阅读全文
摘要:
阅读全文
摘要:
<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title>scrollTop</title> <style> #div1{width: 200px;height: 150px;background: red;positio 阅读全文