ORA-01460: unimplemented or unreasonable conversion requested

后端 未结 4 1514
清酒与你
清酒与你 2020-12-19 06:32

When I run the following .Net code:

using (var c = Shared.DataSources.BSS1.CreateCommand())
{
    c.CommandText = \"\\r\\nSelect c1, c2, c3, rowid \\r\\nFrom         


        
4条回答
  •  孤城傲影
    2020-12-19 06:44

    Finally I found the answer!!!

    After investigating and reflecting into the code I found that by changing the Direction of the Parameter to input output - the problem was resolved.

    p.Direction = ParameterDirection.InputOutput;
    

提交回复
热议问题