zoukankan      html  css  js  c++  java
  • 感觉 Data Access Application Block(DAAB) 里也有可能写得不太好的地方

    昨天下载了博客园的代码,里面有一个
    Data\SqlServer.cs
    我不清楚是不是 MS DAAB 里的原样文件。不过前面有声明如下:
    // ===============================================================================
    // Microsoft Data Access Application Block for .NET 3.0
    //
    // SqlServer.cs
    //
    // This file contains the implementations of the AdoHelper supporting SqlServer.

    我阅读到下面一段代码:
    // set up the command string.  We use sp_procuedure_params_rowset to get the parameters
    if (database != null
    {
        cmdText 
    = string.Concat("[", database, "]..sp_procedure_params_rowset");
        
    if (server != null ) 
        
    {
            cmdText 
    = string.Concat(server, ".", cmdText);
        }


        
    // be careful of transactions
        if (trnSql != null ) 
        
    {
            newCommand 
    = new SqlCommand(cmdText, cmd.Connection, trnSql);
        }
     
        
    else 
        
    {
            newCommand 
    = new SqlCommand(cmdText, cmd.Connection);
        }

    }
     
    else 
    {
        
    // be careful of transactions
        if (trnSql != null ) 
        
    {
            newCommand 
    = new SqlCommand("sp_procedure_params_rowset", cmd.Connection, trnSql);
        }
     
        
    else 
        
    {
            newCommand 
    = new SqlCommand("sp_procedure_params_rowset", cmd.Connection);
        }

    }

    看上去写得比较重复。我觉得完全可以重构为:
    // set up the command string.  We use sp_procuedure_params_rowset to get the parameters
    if (database != null
    {
        cmdText 
    = string.Concat("[", database, "]..sp_procedure_params_rowset");
        
    if (server != null ) 
        
    {
            cmdText 
    = string.Concat(server, ".", cmdText);
        }

    }
     
    else 
    {
        cmdText 
    = "sp_procedure_params_rowset";
    }


    // be careful of transactions
    if (trnSql != null ) 
    {
        newCommand 
    = new SqlCommand(cmdText, cmd.Connection, trnSql);
    }
     
    else 
    {
        newCommand 
    = new SqlCommand(cmdText, cmd.Connection);
    }

    而且我向后看了,这个 cmdText 对象在这个大的方法里再也没有使用过,所以对后面不会有影响。

    另外大致看了一下,感觉 GetProcedureTokens 这个方法也可以写得更好一些。

    从这个看我觉得里面有一些代码也不像想象的那么完美。说的不对的地方请各位指正。
  • 相关阅读:
    Stream流之三级查询
    SpringBoot日期格式的设置
    el表达式
    SpringMV+HuTool之验证码登录
    Spring注解详解
    @ResponseBody注解使用(返回字符串并不跳转)
    每日leetcode-数组-589. N 叉树的前序遍历
    python apply函数
    剑指offer-JZ6 旋转数组的最小数字
    torch.manual_seed()函数
  • 原文地址:https://www.cnblogs.com/RChen/p/121077.html
Copyright © 2011-2022 走看看