码迷,mamicode.com
首页 >  
搜索关键字:execute immediate    ( 3035个结果
深入struts2.0(五)--Dispatcher类
1.1.1       serviceAction方法   在上个Filter方法中我们会看到如下代码: this.execute.executeAction(request, response, mapping);             图3.2.1  Filter方法中跳转到action图 而在Execu...
分类:其他好文   时间:2014-06-19 10:12:51    阅读次数:321
设计模式 - 命令模式(command pattern) 详解
命令模式(command pattern) 详解本文地址: http://blog.csdn.net/caroline_wendy命令模式: 将请求封装成对象, 以便使用不同的请求\队列\日志来参数化其他对象. 命令模式也支持可撤销操作.命令模式:调用者(Invoker);命令(Command): 可执行方法(execute), 具体命令(Concrete Command);接受者(Receive...
分类:其他好文   时间:2014-06-17 22:53:01    阅读次数:359
WebForm和MVC的一些知识(转)
转自:http://www.cnblogs.com/liuhf939/p/3417203.html比较WebForm和Mvc的请求处理方式首先简单了解一下Asp.Net中怎么对页面进行请求处理的: 在管道的第7-8个事件之间,有一个MapHttpHandler类型,在这个类型的Execute方法中....
分类:Web程序   时间:2014-06-17 13:32:44    阅读次数:558
JFace dailog button事件中刷新透视图异常 Trying to execute the disabled command org.eclipse.ui.window.closePerspective
报错的代码为protected void buttonPressed(int buttonId) {Display.getDefault().syncExec(new Runnable() { public void run() { localpmtsStreamViewsAction.r...
分类:Windows程序   时间:2014-06-15 22:51:34    阅读次数:684
UVa 644 - Immediate Decodability
题目:给你一些01串,判断是不是某些串是其它串的前缀。 分析:字符串,字典树。             首先,将字符串按长度排序,这样前缀一定在前面;             然后,再插入字典树的过程中,判断是否覆盖即可。 说明:注意数组的大小。 #include #include #include #include using namespace std; char wor...
分类:其他好文   时间:2014-06-15 20:09:54    阅读次数:190
JAVA 1.5 并发之 Executor框架 (二)execute VS submit
http://www.cnblogs.com/rockman12352/p/3788688.html上一篇对于整体框架讲了很多东西,但是具体在使用时有一些细节并没有说出来首先是执行任务execute(); 执行任务,返回空,相当于 new Thread(task).start();submit();...
分类:编程语言   时间:2014-06-15 13:05:16    阅读次数:267
android GridView加载图片,一张张显示
简单说下,获取SDcard里的图片或者视屏缩略图就不说了,网上很多,主要写下加载图片的方式,在Grideview的Adapter中getView()方法中定义: //异步加载图片,实现一张张显示 new LoadImageAsyctask(gridViewHold.icon).execute(paths[position]); class LoadImag...
分类:移动开发   时间:2014-06-15 08:12:31    阅读次数:193
oracle11G在linux环境下的卸载操作
1.使用SQL*PLUS停止数据库[oracle@OracleTest oracle]$ sqlplus logSQL> connect / as sysdbaSQL> shutdown [immediate]SQL> exit2.停止Listener[oracle@OracleTest oracl...
分类:数据库   时间:2014-06-13 20:17:21    阅读次数:400
how to execute-shell-commands by ruby
Execute shell commandsThere are a number of different ways to run shell commands from Ruby.TheexeccommandKernel#execreplaces the current process and r...
分类:其他好文   时间:2014-06-12 06:50:15    阅读次数:281
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!