A puzzle of using OPD# DotNet - 窗口里的风景
c*t
1 楼
Using Oracle Data Provider for .Net, call a stored procedure with OUT cursor
, which equivalent to:
select max(integer_field) as blah,....
After fill the dataset, I check the datatables[0]: the data type of blah
CHANGED to decimal!!
I made it work by altering sp, cast the max to integer... any better
approach? and why ODP change the data type?
, which equivalent to:
select max(integer_field) as blah,....
After fill the dataset, I check the datatables[0]: the data type of blah
CHANGED to decimal!!
I made it work by altering sp, cast the max to integer... any better
approach? and why ODP change the data type?