1、创建Mysql触发器: 语法: CREATE TRIGGER trigger_name
trigger_time trigger_event ON tbl_name FOR EACH ROW BEGIN trigger_stmt //语句块
END; CR...
分类:
数据库 时间:
2014-05-09 10:52:24
阅读次数:
478
依然在看书学习并练习,不过书上的错误真是。。。首先是CClayer,之前恰好写过一个继承于CCSprite的类,实现单点触控随手指移动,重写了begin,moved和end函数,然后在onEnter和onEixt设置和取消了代理。书上的例子直接是以给的HelloWorld,不仅重写了三个函数,还重写...
分类:
移动开发 时间:
2014-05-09 03:19:30
阅读次数:
456
根据选择的Checkbox动态在表格中列出选择的值
p,div,body,td,input,checkbox,button{font-size:9pt;}
function vbtrim(str)
vbtrim=trim(str)
end function
function vbisnumeric(iVar)
vbisnumeric=not isnumeric(...
分类:
其他好文 时间:
2014-05-09 02:14:35
阅读次数:
319
1 @interface NSString (reverse)2 3 -(NSString *)
reverseString;4 5 @end 1 @implementation NSString (reverse) 2 3 -(NSString *)
reverseString { 4 ...
分类:
其他好文 时间:
2014-05-08 23:54:31
阅读次数:
438
// GuideViewController.h// Created by l.h on
14-5-6.#import @interface GuideViewController : UIViewController@end ////
GuideViewController.m// Cr...
分类:
移动开发 时间:
2014-05-08 18:17:49
阅读次数:
640
#import @interface Car : NSObject{ @public int
speed; int wheels;}// oc方法必须是-开头// oc方法中所有的数据类型必须得用括号括起来//
oc方法中的()就是用来扩住数据类型的-(void)run;@end@implement...
分类:
其他好文 时间:
2014-05-08 12:25:41
阅读次数:
267
上代码String sql = "BEGIN insert into
itil_task_plan (PLAN_CODE) values (?) returning id into ?;
END;";CallableStatement ps = conn.prepareCall(sql);ps......
分类:
数据库 时间:
2014-05-08 11:48:52
阅读次数:
518
1.动态分配的对象的析构函数 1 class man{ 2 public: 3 man(){ 4
cout<<"man begin"<<endl; 5 }; 6 ~man(){ 7 cout<<"man
end"<<endl; 8 } 9 ...
分类:
编程语言 时间:
2014-05-08 09:20:20
阅读次数:
321
转自:http://blog.csdn.net/wanghanjiett/article/details/6931867 几个重要概念: node(节点):
在zigbee堆栈中最多有三种节点:Coordinator(协调器)、Router(路由器)、End Device(终端)。 其中Coordi...
分类:
其他好文 时间:
2014-05-08 06:45:51
阅读次数:
370
1 def bubble_sort(array) 2 return array if
array.size = array[j+1] 7 end 8 end 9 10 return array11 end12 13 a =
[12,42,1,25,32,63...
分类:
其他好文 时间:
2014-05-07 20:33:20
阅读次数:
260