mybatis 查询oracle序列怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis 查询oracle序列怎么写相关的知识,希望对你有一定的参考价值。
参考技术A 直接写序列名 SELECT 序列名.CURRVAL FROM DUALoracle 如何给用户创建查询序列的权限
参考技术A 1、createuser
username
identified
by
password;
2、grant
select
any
table
to
username;
--授予查询任何表
3、grant
select
any
dictionary
to
username;--授予
查询任何字典
执行上面三步就行了,那么这个用户就只有查询权限,其他的权限都没有!!
以上是关于mybatis 查询oracle序列怎么写的主要内容,如果未能解决你的问题,请参考以下文章
mybatis中Errorsetting null forparameter #2 怎么解决??