Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Internal .Net Framework Data Provider error 30 - Can anyone help?

Status
Not open for further replies.

eb24

Programmer
Dec 17, 2003
240
US
I am trying to update some data via a Windows Form using C# 2.0 and am receiving the following error when it reaches this line: command.Command.ExecuteNonQuery();
Code:
System.InvalidOperationException occurred
  Message="Internal .Net Framework Data Provider error 30."
  Source="System.Data.OracleClient"
  StackTrace:
       at System.Data.ProviderBase.DbBuffer.Validate(Int32 offset, Int32 count)
       at System.Data.ProviderBase.DbBuffer.PtrToStringUni(Int32 offset)
       at System.Data.OracleClient.OracleException.CreateException(OciErrorHandle errorHandle, Int32 rc)
       at System.Data.OracleClient.OracleConnection.CheckError(OciErrorHandle errorHandle, Int32 rc)
       at System.Data.OracleClient.OracleCommand.Execute(OciStatementHandle statementHandle, CommandBehavior behavior, Boolean needRowid, OciRowidDescriptor& rowidDescriptor, ArrayList& resultParameterOrdinals)
       at System.Data.OracleClient.OracleCommand.ExecuteNonQueryInternal(Boolean needRowid, OciRowidDescriptor& rowidDescriptor)
       at System.Data.OracleClient.OracleCommand.ExecuteNonQuery()
       at CommandProcessor.Process() in C:\...\CommandProcessor.cs:line 89
 
post the relevant code so we have a context of the error

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top