Click here to Skip to main content
15,880,392 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sir,
generates error ORA-01460: unimplemented or unreasonable conversion requested.
When character size is more generate error like above.
the parameter type i used in my function ff_Save_Details as string
if any one knows the answer please help me..
C#
ff_Save_Details( string as_REC_DETAILS)

OracleParameter P_REC_DETAILS = new OracleParameter("P_REC_DETAILS", OracleType.Clob);
                P_REC_DETAILS.Direction = ParameterDirection.Input;
                P_REC_DETAILS.Value = as_REC_DETAILS;
Posted
Updated 8-May-14 23:51pm
v2

1 solution

This is a good source for ideas for fixing this problem ... http://www.dba-oracle.com/t_ora_01460_unimplemented_or_unreasonable_conversion_requested.htm[^]
 
Share this answer
 
Comments
thatraja 9-May-14 6:11am    
Beat me to it, 5!
CHill60 9-May-14 6:13am    
Thank you! I used to find the Burleson site quite handly for Oracle answers!
thatraja 9-May-14 6:27am    
Me too. I found that site by this one
CHill60 9-May-14 7:16am    
Worth posting as an alternative solution for anyone else who happens by here
thatraja 9-May-14 8:03am    
:) No need for that, atleast for this question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900