上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页
摘要: 1.通过ClassLoader来加载getResource()时不需要加 "/" 因为source是从main开始的; 2.通过Class.getResource()来加载文件时需要加“/” classpath 是:/C:/CustomSofter/develop/IDEA/IDEAWorkSpac 阅读全文
posted @ 2018-02-08 19:13 linbo.yang 阅读(2803) 评论(0) 推荐(0) 编辑
摘要: 总结: 0.@Dataprovider 所修饰的方法必须 return Object[][] ; @Facotry 所修饰的方法必须return Object[] ; 1.在测试场景中经常会遇到一个人执行多个case,那么多个人没人都执行一遍这个case的时候就要用到@Factory创建多个对象了, 阅读全文
posted @ 2018-02-08 17:30 linbo.yang 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: 快速排序图解: java 代码的实现: 1 package main.test; 2 3 public class KSSort { 4 public static int Partition(int[] a, int p, int r) { 5 int x = a[r - 1]; 6 int i 阅读全文
posted @ 2018-02-06 11:23 linbo.yang 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 说明:classpath是jvm执行class时所加载的路径;--个人理解,如有不同:QQ:316567803 1.先下载插件 https://plugins.jetbrains.com/plugin/9556-create-testng-xml 2.安装插件gavroche插件 只需将zip包导入 阅读全文
posted @ 2018-02-03 13:23 linbo.yang 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1.newapp 是数据库的实例名; 2.t_TABLE_NAME LIKE '%&TabNAME%' 根据表名模糊查询 , 3. TC.t_COMMENTS LIKE '%&TabCOMMENT%' 根据表的备注名进行模糊查询 ; 4.or TC.c_COMMENTS LIKE '%&Column 阅读全文
posted @ 2018-01-23 16:01 linbo.yang 阅读(507) 评论(0) 推荐(0) 编辑
摘要: 1 --场景1: 2 select pt, greatest(wm), least(wm) 3 from (select s.producttype pt, wm_concat(s.productid) wm 4 from sys_product s 5 group by s.producttype) 6 where pt ... 阅读全文
posted @ 2018-01-18 18:43 linbo.yang 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1.首先编写一个测试用的 function 2.使用java对func进行调用 每次获得一个最大的成交编号 ; --数据的相关脚本 阅读全文
posted @ 2018-01-09 21:18 linbo.yang 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 1.调用函数 CallableStatement cs=con.prepareCall("{?=call get_pname(?,?,?)}"); 第一个?表示返回的值,后面的?可以是输入参数,也可以是输出参数。 第一个?是返回参数,所以必须有语句: connection.registerOutPa 阅读全文
posted @ 2018-01-09 19:13 linbo.yang 阅读(484) 评论(0) 推荐(0) 编辑
摘要: c3p0-config.xml 阅读全文
posted @ 2018-01-08 19:30 linbo.yang 阅读(2768) 评论(0) 推荐(0) 编辑
摘要: Oracle 中SYS_CONNECT_BY_PATH函数是非常重要的函数,下面就为您介绍一个使用SYS_CONNECT_BY_PATH函数的例子,实例如下: 数据准备: 将 'A,B,C,D,E,F,G'拆分成行显示 ; 阅读全文
posted @ 2017-12-29 11:42 linbo.yang 阅读(5640) 评论(0) 推荐(1) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页