码迷,mamicode.com
首页 >  
搜索关键字:not execute    ( 2489个结果
linux下文件的属性 r, w, x 分别代表什么意思?
1.r(Read,读取):对文件而言,具有读取文件内容的权限;对目录来说, 具有浏览目 录的权限。 2.w(Write,写入):对文件而言,具有新增、修改文件内容的权限;对目 录来说,具有删除、移动目录内文件的权限。 3.x(eXecute,执行):对文件而言,具有执行文件的权限;对目录了来说 该用户具有进入目录的权限。...
分类:系统相关   时间:2014-12-31 13:08:00    阅读次数:633
使用pymysql插入语句时对execute与executemany两个方法进行测速
这两天,在写一个python小程序的时候突然大发奇想了一下,觉得可以测试一下pymysql包里面的execute()与executemany()的速度,executemany()实质上就是将数组中的元素一个个取出来然后一条条的执行,可以查看executemany()的源码为: def executemany(self, query, args): """Run several...
分类:数据库   时间:2014-12-30 20:47:07    阅读次数:908
oracle 存储过程,函数和包
创建存储过程:语法:create [or replace] PROCEDURE 过程名(参数列表)AS PLSQL子程序体;调用 存储过程的方式 两种1、execute(exec) ------exec 函数名()2、begin 函数名() end -------begin 函数名()end函数(....
分类:数据库   时间:2014-12-29 11:51:45    阅读次数:327
Gradle Goodness: Add Incremental Build Support to Tasks
Gradle has a very powerful incremental build feature. This means Gradle will not execute a task unless it is necessary. We can help Gradle and configu...
分类:其他好文   时间:2014-12-27 21:45:24    阅读次数:201
Gradle Goodness: Run a Build Script With a Different Name
Normally Gradle looks for a build script file with the name build.gradle in the current directory to execute a build. But we can easily use a differen...
分类:其他好文   时间:2014-12-27 21:36:08    阅读次数:189
Gradle Goodness: Running Java Applications from External Dependency
With Gradle we can execute Java applications using the JavaExec task or the javaexec() method. If we want to run Java code from an external dependency...
分类:移动开发   时间:2014-12-27 20:14:55    阅读次数:165
接口不能被实例化
今天在看模板方法设计模式的时候 发现在接口回调的时候,匿名类里面new了一个接口 。觉得很奇怪就写了个小程序测试了一下//HibernateCallback是一个接口public void saveUser(final User user) { execute(new Hibernat...
分类:其他好文   时间:2014-12-26 18:08:52    阅读次数:137
JNI: Passing multiple parameters in the function signature for GetMethodID
http://stackoverflow.com/questions/7940484/jni-passing-multiple-parameters-in-the-function-signature-for-getmethodidASK :I am trying to execute a func...
分类:其他好文   时间:2014-12-24 09:51:58    阅读次数:157
kettle 4.4源码分析之Transformation
1.1. 相关类和接口 1.1.1. JobEntryTrans 实现了JobEntryInterface的execute()方法,被job执行。由JobEntryTrans实例化Trans,并执行。 1.1.2. TransGraph 当点击trans面板的run时,由TransGraph实例化Trans,并执行。 Trans主要成员有: private TransMeta tran...
分类:其他好文   时间:2014-12-23 12:33:50    阅读次数:325
Could not execute menu item (internal error) [Exception] Could not perform service action
我在机器里已经安装了IIS7后又安装了wampServer我想让这两个服务都可以独立运行.由于这两个服务都占用80端口. 所以后安装的wamp在启动(put online)的时候就会报错如下图 问题出了,有几个办法可以解决这个问题: 1. 修改IIS 的默认端口号 2. 修改apache的默认端口号 通常我修改apache的默认端口号:  1. 在appache中找到配置文件ht...
分类:其他好文   时间:2014-12-22 16:14:51    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!