码迷,mamicode.com
首页 >  
搜索关键字:execute immediate    ( 3035个结果
php 执行事务的时候pdo出现问题
新版本的pdo会有这个问题:General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternati...
分类:Web程序   时间:2014-12-19 12:55:05    阅读次数:199
mysql错误一例:ERROR 1030 (HY000): Got error 28 from storage engine
在使用mysqldump导出一份建库脚本是,发生了下面的错误:当执行 desc table_name; 时也报错:tag为表名,show index from tag;倒是可以执行。其实真正的错误原因是:Couldn't execute 'show fileds from table' 不能查看表的...
分类:数据库   时间:2014-12-17 00:12:39    阅读次数:233
笔记:java并发实践2
public interface Executor { void execute(Runnable command); } 虽然Executor是一个简单的接口,但它为灵活且强大的异步任务框架提供了基础,该框架能支持多种不同类型的任务执行策略。它提供了一种标准的方法将任务的提交过程与执行过程解耦开来...
分类:编程语言   时间:2014-12-17 00:02:22    阅读次数:221
Ubuntu编译Hadoop编码异常总结
错误1: [ERROR]?Failed?to?execute?goal?org.apache.hadoop:hadoop-maven-plugins:2.2.0:protoc?(compile-protoc)?on?project?hadoop-common:?org.apache.maven.plugin.MojoExecutionException:?pro...
分类:系统相关   时间:2014-12-16 11:58:42    阅读次数:564
DB Query Analyzer 6.03, the most excellent Universal DB Access tools on any Microsoft Windows OS
From 6.01, DB Query Analyzer provides SQL Execute Schedule function to execute SQL scripts in certain time. Without changing any Windows OS settings or configurations, DB Query Analyzer 6.03 can run on any Microsoft Windows OS directly. DB Query Analyzer ...
分类:数据库   时间:2014-12-16 08:45:24    阅读次数:374
sql2008添加列描述
declare @CurrentUser NVARCHAR(5)select @CurrentUser = N'dbo'execute sp_addextendedproperty 'MS_Description', '评分人关系表', 'user', @CurrentUser, 'tab...
分类:数据库   时间:2014-12-15 16:47:37    阅读次数:159
dedecms 文章命名规则
dede cms 文章命名规则:修改include/helpers/channelunit.helper.php //修行数190 $dsql->SetQuery("SELECT writer FROM #@__archives ORDER BY id DESC LIMIT 0,1"); $dsql->Execute(‘hw‘); $hotword = ""; whi...
分类:其他好文   时间:2014-12-15 10:37:30    阅读次数:165
struts2 动态调用方法和使用通配符定义
struts2中无需配置就可以直接调用Action中非execute方法的方式,就是用struts2的动态方法调用。动态方法调用是在action 的名字中使用感叹号(!)来标示要调用的方法名,其语法格式为actionName!methodname.action,例如我们的 struts.xml的配....
分类:其他好文   时间:2014-12-15 00:09:05    阅读次数:174
Class responsibility Analysis of YARN NodeManager
When a container recieved a INIT_CONTAINER event, the state machine of containerImpl will execute the transaction RequestResourcesTransition, one of w...
分类:其他好文   时间:2014-12-14 19:59:40    阅读次数:145
Structs ActionProxy深度阅读
ActionProxy是Action的一个代理类,也就是说Action的调用是通过ActionProxy实现的,其实就是调用了ActionProxy.execute()方法,而该方法又调用了ActionInvocation.invoke()方法。归根到底,最后调用的是DefaultActionInvocation.invokeAction()方法。 DefaultActionInvocation...
分类:其他好文   时间:2014-12-13 19:26:20    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!