码迷,mamicode.com
首页 > 数据库 > 详细

C#读取数据库中的表

时间:2015-08-27 02:10:03      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

        private int ExistOrNot(string name)    //判断当前数据表是否存在

        {

            con = new SqlConnection(s);

            DataSet ds = new DataSet();

            string strSQL = "select name from sysobjects where type=‘" + ‘U‘ + "‘";

            sda = new SqlDataAdapter(strSQL, con);

            sda.Fill(ds);

            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)

            {

                if (ds.Tables[0].Rows[i][0].ToString() == name)

                {

                    return 1;

                }

            }

            return 0;

        }

C#读取数据库中的表

标签:

原文地址:http://www.cnblogs.com/zhanglei93/p/4762096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!