文章列表
Toast.makeText(MainActivity.this,str,Toast.LENGTH_SHORT).show();
extends Service > onCreate, onDestroy, onStartCommand, onBind().
Intent intent = new Intent(MainActivity.this, ExapleService.class;
startService(intent);
stopService();
START_STICKY, START_NON_STICKY,START_REDELIVER_I ...
http://www.lawofvalue.com/bbs/forum.php?mod=viewthread&tid=19&extra=page%3D1
http://zhidao.baidu.com/question/19715416
http://www.ci123.com/article.php/19176
http://www.pcbaby.com.cn/shipu/yunfushipu/yunqi/1007/940452.html
http://baby.sina.com.cn/nutrition/11/2810/2011-10-28/0806194086.shtml
http://www.oschina.net/project/tag/68/ecommerce?lang=19&sort=viewhttp://jingyan.baidu.com/article/335530da727e4d19cb41c3e4.htmlhttp://down.51cto.com/data/93226http://51jiaocheng.net/thread-8785-1-1.htmlhttp://www.iteye.com/topic/1017961http://www.aebiz.net/Case-cc_31.shtmlhttp://www.shopxx.net/ht ...
link
http://wenku.baidu.com/view/8c9860a1284ac850ad02425a.htmlhttp://wenku.baidu.com/view/41721382d4d8d15abe234e76.htmlhttp://wenku.baidu.com/view/664c9ad049649b6648d747cc.html
DataStage_EE开发指南V1.0.doc
datastagedads.doc (2007工作总结)
management note
- 博客分类:
- business
小公司管理升级问题的提出华丰外贸进出口公司,国内外商品进出口代理,集装箱运输货物,信任品牌,两位老板,一个主市场开
拓,一个主内部管理, 靠两三个人慢慢发展起来的,7年,业务稳步发展, 现有员工15人, 利润空间的压
缩,使各种恶意竞争层出不穷。被窃, 信任危机, 集权, 压力极大, 烦心, 甚至夜不能眠, 还能信谁
现状:中小货代占大多数,10年以上大鳄数据显示,在我国目前的进出口商品中,海运的80%,包括集装箱的90%,都是通过国际货代企业
不同程度地参与得以顺利完成。目前在深圳注册的货代企业有3200多家。“在深圳,做国际货代的应该有上万家。”国际货代企业的“小弱”,也使得他们在与 ...
sql remark
- 博客分类:
- me
chomp---------- primary key: unique and NOT NULL identifier to each record, special case of unique keys. So diff. with unique index:(1) One is key, one is index;(2) primary key NOT null.---------- over: support function like count()rank()... func() over(), func() over(order by xxx), func() over(parti ...
oracle reamrk
- 博客分类:
- me
在表上频繁的update和delete的操作会导致索引出现很多空间碎片,通过rebuild index,可以回缩空间碎片,并提供查询效率
DELETE TABLE里大量的数据后,要做一下REORG才能释放空间
alter table tablename move [tablespace tablespacename];(这时table上的索引会失效,需要rebuild)
RUNSTATS need set first
partitioning
http://wenku.baidu.com/view/a1ece7758e9951e79b8927a6.html
ORACLE的 ...
SN:EC-C01choose standard-alone editionchoose \DVTiSO\license.txtinstall SQL Server SP2 from x:\SQLSERVER.SP2
Logon: admin/admin
Help > About Primavera > System tab > Scroll down to license section.Admin > Users > Choose Concurrent user and tick only Project ManagementTools > ...
observer in spring
- 博客分类:
- design
<bean id="messageService" class="com.xxx.MessageServiceImpl"> <property name="orderObservedService"> <list> <ref bean="orderProcessingService" /> </list> </property>
MessageServiceImpl if (messageRe ...
reflection
- 博客分类:
- design
// Reflection
public class Visitor {
public void visit(final Object object) {
visitor pattern
- 博客分类:
- design
// visitor
public interface Visitor {
void visit(FundA
fundA);
}
public interface Element {