你在mysql中指定了一个无效的列序号使用c#

时间:2015-05-09 01:56:13

标签: c# mysql

我已经尝试过这段代码在某些标签中使用C#显示来自MySQL数据库的数据,但是它告诉我,我已经指定了无效的列序号

 private void store_Load(object sender, EventArgs e)
                {
                    string constring = "datasource=localhost;port=3306;username=root";
                    string Query = "select Value from birth.store;";
                    MySqlConnection c = new MySqlConnection(constring);
                    MySqlCommand cmd = new MySqlCommand(Query, c);
                    MySqlDataReader reader;
                    try
                    {
                        c.Open();
                        reader = cmd.ExecuteReader();
                        while (reader.Read())
                        {

                            label3.Text = reader.GetInt32(1).ToString();
                            label4.Text = reader.GetInt64(0).ToString();
                            label6.Text = reader.GetInt64(8).ToString();
                            label10.Text = reader.GetInt64(5).ToString();
                            label14.Text = reader.GetInt64(7).ToString();
                            label13.Text = reader.GetInt64(13).ToString();
                            label11.Text = reader.GetInt64(10).ToString();
                            label20.Text = reader.GetInt64(12).ToString();
                            label19.Text = reader.GetInt64(16).ToString();
                            label17.Text = reader.GetInt64(14).ToString();
                            label26.Text = reader.GetInt64(15).ToString();
                            label32.Text = reader.GetInt64(4).ToString();
                            label31.Text = reader.GetInt64(6).ToString();
                            label23.Text = reader.GetInt64(3).ToString();
                            label27.Text = reader.GetInt64(2).ToString();
                            label25.Text = reader.GetInt64(11).ToString();
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.Message);
                    }
                }

1 个答案:

答案 0 :(得分:1)

您将一个数字传递给GetInt32(),该数字对于查询中的列数而言太大了。传递给reader.GetInt32()reader.GetInt64()的索引是查询中SELECT语句中该列的位置,从0开始。您的查询如下所示:

string Query = "select Value from birth.store;";

只有一列(SELECTFROM之间的名称),因此如果传递给reader.GetInt32(),任何高于0的数字都是无效的。查询中的列越多,您传递的数字就越多。

包含1列的示例:

string Query = "select Value from birth.store;";
// database connection and reader execution go here
string Value = reader.GetInt32(0).toString(); // This gets the column Value

包含3列的示例:

// We're selecting 3 columns now
// 0 = Id
// 1 = Value
// 2 = Name
string Query = "select Id, Value, Name from birth.store;";
// database connection and reader execution go here

string Value = reader.GetInt32(1).toString(); // This gets the column Value

// This gets the column Id. Even though it's not the first one we pulled from
// the reader, it's still #0 on the list of 3 columns.
string Id = reader.GetInt32(0).toString(); 
string Name = reader.GetInt32(2).toString(); // This gets the column Name

// This will throw an exception. You're trying to get the 4th item on a list
// that starts with 0, but there are only 3 items (numbered 0, 1, 2).
string AnotherValue = reader.GetInt32(3).toString();