码迷,mamicode.com
首页 >  
搜索关键字:execute immediate    ( 3035个结果
execute,executeQuery,executeUpdate
Statement的execute(String query)方法用来执行任意的SQL查询,如果查询的结果是一个ResultSet,这个方法就返回true。如果结果不是ResultSet,比如insert或者update查询,它就会返回false。我们可以通过它的getResultSet方法来获取R ...
分类:其他好文   时间:2019-10-03 10:36:02    阅读次数:69
Maven Install报错:Perhaps you are running on a JRE rather than a JDK?
英文描述: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project busiservice: Compilatio ...
分类:其他好文   时间:2019-10-02 18:45:00    阅读次数:106
Executors框架之ScheduledExecutorService实现定时任务
一、简介 An ExecutorService that can schedule commands to run after a given delay, or to execute periodically. (ExecutorService可以安排命令在给定的延迟后运行或定期执行。) The ...
分类:其他好文   时间:2019-09-29 23:38:23    阅读次数:139
linux-配置Java环境
[root@test233 bin]# sh startup.sh Cannot find ./catalina.shThe file is absent or does not have execute permissionThis file is needed to run this progr ...
分类:编程语言   时间:2019-09-28 13:03:43    阅读次数:97
selenium对js的执行操作——selenium控制浏览器页面的滚动
调用JavaScript代码 虽然WebDriver提供了操作浏览器的前进和后退方法,但对于浏览器滚动条并没有提供相应的操作方法。在这种情况下,就可以借助JavaScript来控制浏览器的滚动条。WebDriver提供了execute_script()方法来执行JavaScript代码。 用于调整浏 ...
分类:Web程序   时间:2019-09-27 18:57:42    阅读次数:110
6. Netty源码分析之EventLoop与EventLoopGroup
一、NioEventLoop与NioEventLoopGroup的关系 二、NioEventLoop 1. 设计原理 1. 负责IO读写 2. 执行task。通过调用NioEventLoop的execute(Runnable task)方法实现。我们知道,为了防止资源竞争和并发操作,我们经常会判断当 ...
分类:Web程序   时间:2019-09-25 16:08:20    阅读次数:133
redis 支持事务
pipe = conn.pipeline(transaction=True) pipe.multi() pipe.set('k2','123') pipe.hset('k3','n1',666) pipe.lpush('k4','laonanhai') pipe.execute() ...
分类:其他好文   时间:2019-09-23 12:12:31    阅读次数:77
maven build失败 (Failure to find io.renren:renren-security:pom:3.2.0 in http://maven.aliyun.com/nexus/content/groups/public/ was cached in the local repository...)
今天mvn clean package一个子工程(renren-admin)时报错: Failed to execute goal on project renren-admin: Could not resolve dependencies for project io.renren:renren ...
分类:Web程序   时间:2019-09-21 22:57:31    阅读次数:400
GenericJDBCException: could not execute statement 错误解决
"message":"could not execute statement; nested exception is org.hibernate.exception.GenericJDBCException: could not execute statement","status":"500" ...
分类:数据库   时间:2019-09-19 15:50:41    阅读次数:105
Thinkphp6框架学习:有关数据库的基本操作
本文将提到: 1.原生查询操作的读操作:query() 2.原生查询操作的写操作:insert/update/delete,execute() 3.查询构造器 4.where()函数:可以根据其他字段查询 5.order(),limit()函数 对于数据库的配置在框架中app\config\data ...
分类:数据库   时间:2019-09-17 13:10:04    阅读次数:250
3035条   上一页 1 ... 34 35 36 37 38 ... 304 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!