c# 对oracle插入数据字段过长超出限制的解决方案

通过建立存储过程的方法解决问题,如下所示,存储过程的名字为insertGEO,有4个输入参数,Childrens,RingInParent直接通过sql语句插入时,字段值过长会报错,所以先在数据库中建立存储过程

create or replace procedure insertGEO
(v_id  number,
v_pid number,
Childrens clob,
RingInParent clob)
is
  content clob;
  ring clob;
begin
  content := Childrens;
  ring:=RingInParent;
  insert into geoobjects(PLGID,PARENTID,CHILDRENLIST,RINGINPARENT) values(v_id,v_pid,content,ring );
  update geoobjects set CHILDRENLIST = content,RINGINPARENT=ring where PLGID = v_id;
commit;
end;

然后,调用存储过程插入语句解决问题,c#代码如下:

//执行储存过程
                        OracleCommand om = myConnection.CreateCommand();
                        om.CommandType = CommandType.StoredProcedure;
                        om.CommandText = "insertGEO";
                        om.Parameters.Add("v_id", OracleDbType.Int32).Direction = ParameterDirection.Input;
                        om.Parameters["v_id"].Value = node.m_objList[i].ID;
                        om.Parameters.Add("v_pid", OracleDbType.Int32).Direction = ParameterDirection.Input;
                        om.Parameters["v_pid"].Value = parentID;
                        om.Parameters.Add("Childrens", OracleDbType.NClob).Direction = ParameterDirection.Input;
                        om.Parameters["Childrens"].Value = node.m_objList[i].printChildrens();
                        string ring = "";
                        if (node.m_objList[i].RingInParent != null)
                        {
                            ring = node.m_objList[i].RingInParent.printGeoLineRing();
                        }
                        om.Parameters.Add("RingInParent", OracleDbType.NClob).Direction = ParameterDirection.Input;
                        om.Parameters["RingInParent"].Value = ring;
                        om.ExecuteNonQuery();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值