开发者

Method improvement on data access via ADO.NET [closed]

开发者 https://www.devze.com 2023-04-10 08:29 出处:网络
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, argument开发者_如何学运维s, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 11 years ago.

Which of the two code segments below would you prefer? Why? Are there any circumstances where the other would be preferable? Could you make any further improvements?

 i. 
        private int GetSize(string deptName)
        {
            QueryHelper dqh = new QueryHelper();
            return dqh.GetDataSet("sp_GetDeptSize",deptName).Tables[0].Rows[0]["Size"];
        }

    ii. 
        private int GetSize(string deptName)
        {
            QueryHelper dqh = new QueryHelper();
            DataSet ds = dqh.GetDataSet("sp_GetDeptSize", deptName);
            DataTable dt = ds.Tables[0];
    DataRow dr = dt.Rows[0];
    int size = dr["Size"];
            return size;
        }

Please note that QueryHelper is custom type.

My answer to this: I prefer to method i, which is more concise. It seems that method ii is not preferable under any circumstances.

I need advice on further improvement on method i, and idea would be very much appreciated.


The two methods you listed are 99% identical. The notational difference is a matter of taste.
Both still need a cast to int.

I would prefer skipping the DataSet and use Command.ExecuteScalar()


Given the code, i will say Method 2 is better as you must NULL check everything before trying to access.

what if dataset it NULL?. Method 1 will error out.

What if there is no table in the dataset? Again method 1 will error out.

What if there is a table but no row? Again method 1 will error out.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号