G
Guest
This is my code
OracleConnection OraCN = new OracleConnection(conStr)
OracleCommand OraCM = new OracleCommand("insert into CONTENT values ( :subxml ) ",OraCN)
OraCM.CommandType = CommandType.Text
OraCM.Parameters.Add("subxml",OracleType.Clob,submitXml.Length,submitXml)
OraCN.Open()
OraCM.ExecuteNonQuery()
I got the error :ORA-01008,what's wrong with the code,thanks
OracleConnection OraCN = new OracleConnection(conStr)
OracleCommand OraCM = new OracleCommand("insert into CONTENT values ( :subxml ) ",OraCN)
OraCM.CommandType = CommandType.Text
OraCM.Parameters.Add("subxml",OracleType.Clob,submitXml.Length,submitXml)
OraCN.Open()
OraCM.ExecuteNonQuery()
I got the error :ORA-01008,what's wrong with the code,thanks