本文介绍了获取下一个序列值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个代码可以通过序列名称获取s序列的下一个值吗?

There is a code for getting next value of a s sequence by sequence name?

public int GetNextVal(String seqname)
{
???
}


如果seq不存在,则返回-1?

谢谢.


And if seq doesn''t not exist return -1?

Thanks.

推荐答案


for (int i: oList){
  System.out.println("List entry\t" + i);
}



还是进行诸如"select nextVal('''')"之类的查询是数据库的事情?



Or is it more a database thing to make a query like "select nextVal('''')" ???


这篇关于获取下一个序列值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 04:55