zoukankan      html  css  js  c++  java
  • C#调用数据库中的Procedure的方法

    C#调用数据库中的Procedure的方法

     public ExecutionResult CreateWIPSN(MOBaseInfo moBaseInfo)
            {
                ExecutionResult execRes;
                string sqlText;
    
                //private InfoLightDBTools dbTools;       //#ORACLE#
                //this.dbTools = new InfoLightDBTools(clientInfo, dbName);
    
                // private InfoLightDBTXTools dbTXTools;  //#ORACLE# 要结合事务处理使用:BeginTransaction(),Commit(),Rollback(),EndTransaction()
                // this.dbTXTools = new InfoLightDBTXTools(clientInfo, dbName);
    
                // private InfoLightMSTools mdbtool;    //#SQL SERVER#
    
    
                // private DBParameter dbParam;
                //this.dbParam = new DBParameter();
    
                sqlText = "SFIS1.CREATE_WIP_SN";
                this.dbParam.Clear();
                this.dbParam.Add("imo_number", OracleType.VarChar, moBaseInfo.MONo);
                this.dbParam.Add("imodel_name", OracleType.VarChar, moBaseInfo.ModelName);
                this.dbParam.Add("iline_name", OracleType.VarChar, moBaseInfo.DefaultLine);
                this.dbParam.Add("ispecial_route", OracleType.VarChar, moBaseInfo.RouteCode);
                this.dbParam.Add("icustomer_no", OracleType.VarChar, moBaseInfo.CustCode);
                this.dbParam.Add("iversion_code", OracleType.VarChar, moBaseInfo.VersionCode);
                this.dbParam.Add("ikey_part_no", OracleType.VarChar, moBaseInfo.KeyPartNo);
                this.dbParam.Add("ibom_no", OracleType.VarChar, moBaseInfo.BOMNo);
                this.dbParam.Add("iweight", OracleType.VarChar, moBaseInfo.Weight);
                this.dbParam.Add("iqty", OracleType.Number, moBaseInfo.TargetQty);
                this.dbParam.Add("res", OracleType.VarChar);
                execRes = this.dbTools.ExecuteSP(sqlText, this.dbParam.GetParameters());
    
                return execRes;
            }

     

     


    技术的发展日新月异,随着时间推移,无法保证本博客所有内容的正确性。如有误导,请大家见谅,欢迎评论区指正!
    我创建了一个.NET开发交流群,用于分享学习心得和讨论相关技术难题。欢迎有兴趣的小伙伴扫码入群,相互学习!

  • 相关阅读:
    生成水印图片
    Java 生成图片-字体杂色去除
    java比较两个日期大小
    JS--添加option
    使用JS刷新showModalDialog窗口
    日期格式转换(String->Date)
    根据当前日期及出生日期,计算当前年龄(function)
    PHP的错误和异常处理
    IntelliJ IDEA15,PhpStorm10,WebStorm11激活破解
    apache相关配置
  • 原文地址:https://www.cnblogs.com/wml-it/p/12573106.html
Copyright © 2011-2022 走看看