操作Oracle数据库实现上传图片到Blob类型的字段

通过使用OleDb操作Oracle数据库,成功实现图片上传到Blob类型的字段,但有时会发生ORA-01036错误的问题,经查询是错误提示为illegal variable name/number,不知道有谁能详细解释illegal variable name/number的意思

Oracle Data Provider for .NET
Hi
I am using ODP.NET (Oracle Data Provider for .NET) in my asp.net application.
I have a table in my oracle database called "equipmentgroup". When the page loads for the first time i retrieve all the records from the table to a dataset and save it to viewstate. Later on any addition or modification is done in the dataset only in disconnected mode. Finally,when user clicks update i call this function "update" which should do a batch update but instead it gives the following error :

"ORA-01036: illegal variable name/number "


 

None.gif          private   void  update()
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif {
InBlock.gif            OracleParameter workParam;
InBlock.gif
InBlock.gif            OracleConnection cnn 
= new OracleConnection("Data Source=NEELESHR;User Id=tmse; Password=tmse;");
InBlock.gif            
string sql = "INSERT INTO EquipmentGroup (Code, Description, LifeTime, PriamryLife, Grading, Inflator, ExtensionRate, MaintenanceFee) VALUES (:Code, :Description, :LifeTime, :PriamryLife, :Grading, :Inflator, :ExtensionRate, :MaintenanceFee)";
InBlock.gif            OracleCommand cmd 
= new OracleCommand(sql,cnn);
InBlock.gif            cmd.CommandType 
= CommandType.Text;            
InBlock.gif
InBlock.gif            OracleDataAdapter da 
= new OracleDataAdapter();
InBlock.gif            da.InsertCommand 
= cmd;
InBlock.gif            
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("Code",OracleType.Char,10,"Code");
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("Description",OracleType.VarChar,50,"Description");
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("LifeTime",OracleType.Number);
InBlock.gif            workParam.SourceColumn 
= "LifeTime";
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("PriamryLife",OracleType.Number);
InBlock.gif            workParam.SourceColumn 
= "PriamryLife";
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("Grading",OracleType.Char,10,"Grading");
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("Inflator",OracleType.Number);
InBlock.gif            workParam.SourceColumn 
= "Inflator";
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("ExtensionRate",OracleType.Number);
InBlock.gif            workParam.SourceColumn 
= "ExtensionRate";
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif
InBlock.gif            workParam 
= da.InsertCommand.Parameters.Add("MaintenanceFee",OracleType.Number);
InBlock.gif            workParam.SourceColumn 
= "MaintenanceFee";
InBlock.gif            workParam.SourceVersion 
= DataRowVersion.Current;
InBlock.gif            
InBlock.gif
InBlock.gif            
try
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                da.Update(ds,
"EquipmentGroup");
ExpandedSubBlockEnd.gif            }

InBlock.gif            
catch(Exception e)
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                Message.Text 
= e.Message;
ExpandedSubBlockEnd.gif            }

InBlock.gif
ExpandedBlockEnd.gif        }

None.gif
None.gif
None.gif
None.gifHi,
None.gif
None.gifI think that you should add parameters with 
" : "  included, like:
None.gifworkParam 
=
None.gifda.InsertCommand.Parameters.Add(
" :Code " ,OracleType.Char, 10 , " Code " );
None.gif
None.gifOleDb Data Provider 
for  .NET
None.gif
None.gif
string  sql  =   " INSERT INTO EquipmentGroup (Code, Description, LifeTime, PriamryLife, Grading, Inflator, ExtensionRate, MaintenanceFee) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ) " ;
None.gif
None.gif
None.gifHi,
None.gif
None.gifI think that you should add parameters with 
" : "  included, like:
None.gifworkParam 
=
None.gifda.InsertCommand.Parameters.Add(
" :Code " ,OracleType.Char, 10 , " Code " );
None.gif
None.gif

转载于:https://www.cnblogs.com/hbzxf/archive/2004/10/12/51421.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值