在asp.net core 中我自定义的一个读取数据库的类,方法不报错 但是读不出数据来,表中也有数据

发布于 2022-09-06 15:57:02 字数 1705 浏览 13 评论 0

public static DataTable LoadDataTable(string connectingStr, string sqlCommand)

    {
        SqlConnection scon = new SqlConnection(connectingStr);

        //SqlConnection scon = cls_ClassLib.scon;

        SqlDataAdapter sread = new SqlDataAdapter();
        sread.SelectCommand = new SqlCommand(
            sqlCommand,
            scon
            );

        sread.SelectCommand.CommandTimeout = 120;

        try
        {
            scon.Open();
        }
        catch (System.Exception ex)
        {

if (DEBUG)

            string tttt = ex.Message + sqlCommand.ToString();

else

            return null;

endif

        }

        DataTable ds = new DataTable();
        try
        {
            sread.Fill(ds);
        }
        catch (System.Exception ex)
        {
            try
            {
                //写日志
                LogHelper.writeLog((Directory.GetCurrentDirectory() + "/log/" + DateTime.Now.ToString("MMdd") + "_MSSql.txt"),
                     DateTime.Now.ToString("HH:mm:ss") + "\t\t" + ex.Message + "\t\t" + connectingStr + "\t\t" + sqlCommand);
            }
            catch
            {
            }

if (DEBUG)

            string tttt = ex.Message + sqlCommand.ToString();

else

            return null;

endif

        }
        finally
        {
            try
            {
                sread.Dispose();
                scon.Close();
            }
            catch
            {
            }
        }

        return ds;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小忆控 2022-09-13 15:57:03

已解决datatable中已经加载了数据

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文