码迷,mamicode.com
首页 >  
搜索关键字:not execute    ( 2489个结果
MySQL数据库存储过程动态表建立(PREPARE)
PREPARE statement_name FROM sql_text /*定义*/   EXECUTE statement_name [USING variable [,variable...]] /*执行预处理语句*/   DEALLOCATE PREPARE statement_name /*删除定义*/   这是我项目当中用到的,用作参考使用:DELIMITER $$ DROP PROC...
分类:数据库   时间:2014-06-20 11:22:00    阅读次数:279
SQL Server---存储过程
前两天我们简单的了解了有关一种特殊的存储过程——触发器的相关知识,今天要写得是关于存储过程的一些简单的理论和实际应用的知识。 首先,我们需要了解的是什么是存储过程,以及它的格式。 定义:将常用的或很复杂的工作,预先用SQL语句写好并用一个指定的名称存储起来, 那么以后要叫数据库提供与已定义好的存储过程的功能相同的服务时,只需调用execute,即可自动完成命令。...
分类:数据库   时间:2014-06-20 11:08:47    阅读次数:197
深入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
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
android GridView加载图片,一张张显示
简单说下,获取SDcard里的图片或者视屏缩略图就不说了,网上很多,主要写下加载图片的方式,在Grideview的Adapter中getView()方法中定义: //异步加载图片,实现一张张显示 new LoadImageAsyctask(gridViewHold.icon).execute(paths[position]); class LoadImag...
分类:移动开发   时间:2014-06-15 08:12:31    阅读次数:193
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
shell中的case语句
类似于其他高级程序语言,Shell中case语句的作用也是作为多项选择使用,语法如下: [plain]   case word in     pattern1)       Statement(s) to be execute if pattern1 matchs       ;;     pattern2)       Statement(s) to b...
分类:其他好文   时间:2014-06-11 07:09:18    阅读次数:212
Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.(转)
1.程序运行后异常显示:解决方案:在项目上点击右键->properties->Java Build Path,remove掉Android Dependences即可
分类:编程语言   时间:2014-06-09 00:52:35    阅读次数:247
有关于psExec的使用
psExec是微软pstools工具包中最常用的一个工具,也是在内网渗透中的免杀渗透利器。 psExec能够在命令行下在对方没有开启telnet服务的时候返回一个半交互的命令行,像telnet客户端一样。非常方便我们的工作,之所以叫半交互是因为这个命令行不能够执行一条命令中有交互的回显,比如runas的密码输入。 使用方法如下: PsExec v2.11 - Execute processe...
分类:其他好文   时间:2014-06-08 09:06:05    阅读次数:336
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!