by fuguizhong - Web开发 - 2011-12-21 08:44:48 阅读(895) 回复(0)
event Js代码 1.// written by Dean Edwards, 2005 2.// with input from Tino Zijdel, Matthias Miller, Diego Perini 3. 4.// http://dean.edwards.name/weblog/2005/10/add-event/ 5. 6.function addevent(element, type, handler) { 7. if (element.addeventListener) { 8. element.addeventListener(type, handler, false); 9. } else { 10. // assign each event handler ...
1. Date:01/11/2008 Time:03:41:00 下午 event code:0x71310008 Description:CMID Transport Device 2: Gate 0 connects to SP ID 0x9b03609060010650:0 (Signature 0xac26b) 00 00 04 00 06 00 4e 00 d3 04 00 00 08 00 31 61 08 00 31 61 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 71 31 00 08 Subsystem:CK200024500227 Device:N/A SP:N/A Host:SHTAX-MAIN-SPA Source:cmid Category:NT System Log Log:...
1.\r\nDate:01/11/2008\r\nTime:03:41:00 下午\r\nevent code:0x71310008\r\nDescription:CMID Transport Device 2: Gate 0 connects to SP ID 0x9b03609060010650:0 (Signature 0xac26b) 00 00 04 00 06 00 4e 00 d3 04 00 00 08 00 31 61 08 00 31 61 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 71 31 00 08 \r\nSubsystem:CK200024500227\r\nDevice:N/A\r\nSP:N/A\r\nHost:SHTAX-MAIN-SPA\r\nSource:cmid\...
DECLARE CURSOR TCURSOR IS SELECT Itemcode FROM Item; TYPE TRS IS REF CURSOR RETURN TCURSOR%ROWTYPE; RS TRS; BEGIN EXECUTE IMMEDIATE 'SELECT Itemcode FROM Item' INTO RS; END; 请问这段语句为什么会出错?
Is anyone create an event monitor before? I have created an event which will monitor on the statements and it's work fine for me. But I couldn't see the value for those dynamic sql as it's only display ? Anyone know how to get the value also??? Kindly pls advise.
[这个贴子最后由cinc在 2002/09/12 10:12pm 编辑] 基于事件的模式 设计模式中最常见的一种,本文介绍了一个发展出来的新的事件模式: Publisher-Subscriber 模式 event Notifier, a Pattern for event Notification http://www.dralasoft.com/products/eventbroker/whitepaper/ event Nodifier 是一种由 Mediator 和 Observr 模式结合而产生的一种模式。 实际上就是 Publisher-Subscriber 模式。 模式的中心是一个 eventSe...
打算做下限制udp连接数的测试,网上查了下资料 自己这样写,没效果: iptables -A INPUT -p udp -m connlimit --connlimit-above 2 -j REJECT 后来网上又找了条: iptables -t mangle -A PREROUTING -i eth1 -p !tcp -m state --state NEW -m connlimit --connlimit-above 2 --connlimit-mask 32 -j DROP 结果提示: bash: !tcp: event not found
ubuntu下执行:[code]bellszhu@bells-ThinkPad:~$ !3 bash: !3: event not found bellszhu@bells-ThinkPad:~$ [/code]因该是执行history记录中的第三个命令呀 不明白为什么输出event not found??