c# - Specified argument was out of the range of valid values. oracle parameter -


var orclparam=new oracleparameter("p_amount",0); 

i getting error,

specified argument out of range of valid values

so 1 correct bellow,

var orclparam=new oracleparameter("p_amount",0.tostring());  

or

var orclparam=new oracleparameter("p_amount","0"); 


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -