What datatype in oracle would map to a Java int?
What type in Oracle (10 Express Edition) would be the "same开发者_开发问答" as a Java int?
Java's int has a range of -2,147,483,648 to 2,147,483,647 - so Number(10,0) is as close as you're going to get...
I'd say number(10,0)
.
try NUMBER . In Oracle we use Number for Integer
精彩评论