ADO.NET - 数据读取错误

发布于 2024-10-11 03:55:23 字数 1036 浏览 3 评论 0原文

我正在尝试将数据库中的列中的数据显示到富文本框中,但我在 DataSet 和 DataReader 之间混淆了 - 我知道下面的大部分代码是正确的,我只得到包含错误的两行,并且我'我不知道为什么:

// Create a connection string
            string ConnectionString = ("Provider=Microsoft.ACE.OLEDB.12.0;Data Source= C:\\Documents and Settings\\Harley\\Desktop\\Test.accdb");
            string SQL = "SELECT * FROM Paragraph";

            // create a connection object
            SqlConnection conn = new SqlConnection(ConnectionString);

            // Create a command object
            SqlCommand cmd = new SqlCommand(SQL, conn);
            conn.Open();

            DataTable dt = new DataTable();
            da.Fill(dt); //ERROR

            // Call ExecuteReader to return a DataReader
            SqlDataReader reader = cmd.ExecuteReader();

            foreach(DataRow reader in dsRtn) //ERROR
            {
                richTextBox = richTextBox.Text + reader[0].ToString();
            }

            //Release resources
            reader.Close();
            conn.Close();

        }

I am trying to display data from a column in my database onto my rich textbox, but I am getting mixed up between DataSet and DataReader - I know the majority of the code below is correct, I just get two lines containing errors, and I'm not sure why:

// Create a connection string
            string ConnectionString = ("Provider=Microsoft.ACE.OLEDB.12.0;Data Source= C:\\Documents and Settings\\Harley\\Desktop\\Test.accdb");
            string SQL = "SELECT * FROM Paragraph";

            // create a connection object
            SqlConnection conn = new SqlConnection(ConnectionString);

            // Create a command object
            SqlCommand cmd = new SqlCommand(SQL, conn);
            conn.Open();

            DataTable dt = new DataTable();
            da.Fill(dt); //ERROR

            // Call ExecuteReader to return a DataReader
            SqlDataReader reader = cmd.ExecuteReader();

            foreach(DataRow reader in dsRtn) //ERROR
            {
                richTextBox = richTextBox.Text + reader[0].ToString();
            }

            //Release resources
            reader.Close();
            conn.Close();

        }

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

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

发布评论

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

评论(1

凉宸 2024-10-18 03:55:23

您的每个片段都有一个问题。

对于数据适配器实现,您提供了以下内容:

        SqlCommand cmd = new SqlCommand(SQL, conn);
        conn.Open();

        DataTable dt = new DataTable();
        da.Fill(dt); //ERROR

您没有将 SqlCommand 对象与 DataAdapter 关联,因此它不知道如何填充 DataTable。

至于您的数据读取器实现,

        // Call ExecuteReader to return a DataReader
        SqlDataReader reader = cmd.ExecuteReader();

        foreach(DataRow reader in dsRtn) //ERROR
        {
            richTextBox = richTextBox.Text + reader[0].ToString();
        }

您错误地使用了数据读取器,请尝试以下操作:

        // Call ExecuteReader to return a DataReader
        SqlDataReader reader = cmd.ExecuteReader();

        while( reader.Read() )
        {
            richTextBox = richTextBox.Text + reader[0].ToString();
        }

Each of your snippets has an issue.

For the Data Adapter implementation you provided this:

        SqlCommand cmd = new SqlCommand(SQL, conn);
        conn.Open();

        DataTable dt = new DataTable();
        da.Fill(dt); //ERROR

You are not associating your SqlCommand object with your DataAdapter so it has no idea how to fill your DataTable.

As for your Data Reader implementation,

        // Call ExecuteReader to return a DataReader
        SqlDataReader reader = cmd.ExecuteReader();

        foreach(DataRow reader in dsRtn) //ERROR
        {
            richTextBox = richTextBox.Text + reader[0].ToString();
        }

you are using the DataReader incorrectly try this:

        // Call ExecuteReader to return a DataReader
        SqlDataReader reader = cmd.ExecuteReader();

        while( reader.Read() )
        {
            richTextBox = richTextBox.Text + reader[0].ToString();
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文