G
GautamKumar
Passing more than 32 KB Data to a Stored Procedure using ODP.Net Provider throws this error to me
" ORA-01460: unimplemented or unreasonable conversion requested"
The same code is working fine with oledb provider type but using ODP.Net it is giving this error if the fILE Size is Greater than 32 KB.
Is there any limitation passing greater than 32 KB.
Please let me know if any body knows ASAP.
Please suggest me if any other specific NewsGroup is there for ODP.Net
FileInfo fi=new FileInfo(@"C:\MyData\Old_Gautam_data\BLR-WS-119\songs\telugu\movies\letsc..txt");
StreamReader sr=new StreamReader(fi.FullName);
string tempbuff=sr.ReadToEnd();
CMD.AddParameter("vOut",null,ParameterDirection.Output,DbType.String,(int)tempbuff.Length);
CMD.AddParameter("vin",tempbuff,ParameterDirection.Input);
This is my sample Procedure which returns clob as out parameter:-->
CREATE OR REPLACE Procedure proctest(nIn Number,vOut out CLOB,vin in CLOB)
is
StrSql Varchar2(3000);
Begin
vOut := vin;
END;
Thanks
Gautam
" ORA-01460: unimplemented or unreasonable conversion requested"
The same code is working fine with oledb provider type but using ODP.Net it is giving this error if the fILE Size is Greater than 32 KB.
Is there any limitation passing greater than 32 KB.
Please let me know if any body knows ASAP.
Please suggest me if any other specific NewsGroup is there for ODP.Net
FileInfo fi=new FileInfo(@"C:\MyData\Old_Gautam_data\BLR-WS-119\songs\telugu\movies\letsc..txt");
StreamReader sr=new StreamReader(fi.FullName);
string tempbuff=sr.ReadToEnd();
CMD.AddParameter("vOut",null,ParameterDirection.Output,DbType.String,(int)tempbuff.Length);
CMD.AddParameter("vin",tempbuff,ParameterDirection.Input);
This is my sample Procedure which returns clob as out parameter:-->
CREATE OR REPLACE Procedure proctest(nIn Number,vOut out CLOB,vin in CLOB)
is
StrSql Varchar2(3000);
Begin
vOut := vin;
END;
Thanks
Gautam