05 2016 档案

摘要:olap.stepNext = function(){ } olap.stepNextOver = function(func){ olap.stepNext = func; } function testClick() { olap.stepNextOver(function(){ ale... 阅读全文
posted @ 2016-05-20 11:16 IAMME 阅读(151) 评论(0) 推荐(0)
摘要:1.问题描述 easyui 编辑表格新增一条数据后,删除最后一行删除不了,原因是没有提交数据acceptChanges。 源码中deleteRow方法,根据坐标获取行html,方法为opts.finder.getTr(_7cb,_7cc).remove()。 如id="datagrid-row-r4 阅读全文
posted @ 2016-05-17 09:18 IAMME 阅读(1981) 评论(0) 推荐(0)
摘要:exp 'dssdp/dssdp@orcl' file=pams.dmp owner=dssdp log=dssdp.log imp 'pams/pams@orcl' file=pams.dmp fromuser=dssdp touser=pams ignore=y constraints=y grants=y 阅读全文
posted @ 2016-05-10 18:25 IAMME 阅读(6715) 评论(0) 推荐(0)
摘要:maven的作用: 1.管理jar,使用jar和代码分离,eg.不用将代码提交到svn上维护,jar版本统一管理,项目模块化依赖管理。 2.统一目录结构,实现项目的自动构建,通过项目配置文件可以分别在不同的IDE下进行自动化一键构建。 3.自动化运维,编译,打包。 常用的命令: mvn eclips 阅读全文
posted @ 2016-05-05 09:01 IAMME
摘要:/** * 配置文件工具类 * @author Administrator * */ public class ConfigUtil { /* 加载服务配置文件 */ private static Prop prop = PropKit.use(“test.properties”); private ConfigUtil(){} ... 阅读全文
posted @ 2016-05-03 11:24 IAMME 阅读(2593) 评论(0) 推荐(0)
摘要:public class QuartzManager { public static StdSchedulerFactory factory = new StdSchedulerFactory(); public static String MODELNAME = "analyzerModel"; public static Scheduler scheduler = null; ... 阅读全文
posted @ 2016-05-03 11:11 IAMME 阅读(245) 评论(0) 推荐(0)
摘要:public class GetConnectionMysql { public static Connection getConnection(){ String driver="com.mysql.jdbc.Driver"; //获取mysql数据库的驱动类 String url="jdbc:mysql://133.96.46.100:3306/test"; //连接数据库(t... 阅读全文
posted @ 2016-05-03 11:07 IAMME 阅读(3464) 评论(0) 推荐(0)
摘要:Select Name FROM DatabaseName.SysObjects Where XType='U' orDER BY Name 阅读全文
posted @ 2016-05-03 11:06 IAMME 阅读(108) 评论(0) 推荐(0)
摘要:public class GetConnectionSqlServer { public void getConnectionSqlServer() { String driverName = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; String dbURL = "jdbc:sqlserver://133.96.46.100:1... 阅读全文
posted @ 2016-05-03 11:06 IAMME 阅读(2267) 评论(0) 推荐(0)