- 浏览: 58501 次
- 性别:
- 来自: 厦门
最新评论
-
gongmingwind:
但是JTA是怎样控制多个DAO事务的没有写的清楚,但已经非常不 ...
JDBC DAO设计 -
gongmingwind:
整理的非常好,受益匪浅!谢谢...
JDBC DAO设计 -
萝卜控:
linksys的产品简单好用设置中自带说明(虽然不全)入手后5 ...
linksys 密匙设置 -
zhiblin:
http://www.myprice.com.cn/manu/ ...
linksys 密匙设置 -
zhiblin:
维度表
维度表可以看作是用户来分析数据的 ...
Fact Table and Dimension Table
文章列表
UIKit中包含了UIGestureRecognizer类,用于检测发生在设备中的手势。UIGestureRecognizer是一个抽象类,定义了所有手势的基本行为,它有下面一些子类用于处理具体的手势:
1、拍击UITapGestureRecognizer (任意次数的拍击)
2、向里或向外捏UIPinchGestureRecognizer (用于缩放)
3、摇动或者拖拽UIPanGestureRecognizer
4、擦碰UISwipeGestureRecognizer (以任意方向)
5、旋转UIRotationGestureRecogniz ...
oracle要点记录
Select Distinct Type From dba_source
Select * From dba_views
如何在XCode4中设置NSZombieEnabled
点击scheme下拉菜单 -> 编辑scheme -> arguments, 然后将点击”加号”, 将NSZombieEnabled参数加到Environment Variables窗口中, 后面的数值写上”YES”.
xCode3:
target下有个executables
打开它的info 在arguments栏
下半边 加上个参数
name:NSZombieEnabled value:yes 然后购上
在debug模式下 以前的bad_access会多点log 帮你定位
iphone开发一定会遇到
@property (retain, nonatomic) IBOutlet UITextView *descText;
其中的retain 还可以填写为其他如readonly、retain、read write、copy、assign等属性。
具体代表的意思下面列出:
retain When you’re dealing with object values. The compiler will retain the value you pass in (we’ll talk more about retaining in a minute) an ...
sqlitemanager
- 博客分类:
- iphone
官方网站:http://www.sqlabs.net/sqlitemanager.php
注册码:SQLM3-29H3A-23383-LDCZD
http://www.macupdate.com/app/mac/14140/sqlitemanager
1、按照xcode正常新建一个window-base application工程
2、删除Info.plist里面Main nib file base name这一条,或者把后面的MainWindow清空也行
3、main.m里有一句int retVal = UIApplicationMain(argc, argv, nil, nil);改成:int retVal = UIApplicationMain(argc, argv, nil, @"YOUR_APPDELEGATE_CLASS");如:int retVal = UIApplicationMain(argc, ...
loop循环:
create or replace procedure pro_test_loop is
i number;
begin
i:=0;
loop
i:=i+1;
dbms_output.put_line(i);
if i>5 then
exit;
end if;
end loop;
end pro_test_loop;
while循环:
create or replace procedure pro_test_while is
i number;
begin
i:=0;
while i<5 loop
i: ...
- 2009-12-03 17:03
- 浏览 1302
- 评论(0)
linksys的产品真的很难搞,郁闷
http://www.51nb.com/forum/viewthread.php?tid=244655&fpage=1
网上说明又少
http://www.2hand.cn/article.asp?id=207
- 2009-09-15 16:21
- 浏览 1141
- 评论(2)
http://www.ejdz.cn/diannaojishu/wangluojishu/lglyqlj_jtlysz_gxswtj_513.htm
设置两台路由器上网解决办法。
- 2009-09-14 10:14
- 浏览 1311
- 评论(0)
给定一组域D1,D2,…,Dn,这些域中可以有相同的。D1,D2,…,Dn的笛卡尔积为:D1×D2×…×Dn={(d1,d2,…,dn)|diDi,i=1,2,…,n}所有域的所有取值的一个组合不能重复例 给出三个域:D1=SUPERVISOR ={ 张清玫,刘逸 } D2=SPECIALITY={计算机专业,信息专业}D3=POSTGRADUATE={李勇,刘晨,王敏}则D1,D2,D3的笛卡尔积为:D1×D2×D3 ={(张清玫,计算机专业,李勇),(张清玫,计算机专业,刘晨),(张清玫,计算机专业,王敏),(张清玫,信息专业,李勇), (张清玫,信息专业,刘晨),(张清玫,信息专业 ...
- 2009-08-04 17:12
- 浏览 1006
- 评论(0)
about oracle informatica sql server and so on
http://blog.csdn.net/suncrafted/archive/2009/07/12/4342602.aspx
- 2009-08-04 16:57
- 浏览 974
- 评论(0)
6. The greater the population there is in a locality, the greater the need there is for water, transportation, and disposal of refuse.6.一个地方的人口越多,其对水,交通和垃圾处理的需求就会越大。7. It is more difficult to write simply, directly, and effectively than to employ flowery but vague expressions that only obscure one’s ...
- 2009-08-04 16:37
- 浏览 705
- 评论(0)
Fact Table:
A fact table typically contains the business fact data such as sales amount, sales quantity, the number of customers, and the foreign keys to dimension tables. Dimension Table:
Dimension tables contain deta ...
- 2009-08-04 16:30
- 浏览 1952
- 评论(2)
1. Typical of the grassland dwellers of the continent is the American antelope, or pronghorn.1.美洲羚羊,或称*角羚,是该大陆典型的草原动物。2. Of the millions who saw Haley’s comet in 1986, how many people will live long enough to see it return in the twenty-first century.2. 1986年看见哈雷慧星的千百万人当中,有多少人能够长寿到足以目睹它在二十一世纪的回归呢?3. ...
- 2009-07-29 11:23
- 浏览 786
- 评论(0)