- 浏览: 2455 次
- 性别:
- 来自: 广州
最近访客 更多访客>>
最新评论
-
showtimes52007:
showtimes52007 写道你用的框架是JDK吧???h ...
String的split -
showtimes52007:
你用的框架是JDK吧???http://www.sujunqi ...
String的split
文章列表
前些天在项目中调用了框架中的代码:
package yb_butterfly.testSplit;
public class TestSplit {
public static void main(String[] args) {
String str = "||a|";
String[] arrStr = str.split("\\|");
System.out.println("the length of 1st test is : " + arrStr.length);
String ...
今天下午,突然收到实施人员在现在场发回来的问题,其中有一个问题我怎么也想不出原因,直到后上网找资料,并重新测试了程序,才发现这个问题。问题来自于数据库的一个存储过程。
--变量声明
-- ....
-- 判断游标是否结束
declare v_curOver integer default 0;
--声明游标
declare c_CCDZ cursor for
select nvl(COL1, '')
from TABLE1
where COL2=in_COL2;
-- ...