1

您好我正在尝试从数据库中获取一些数据并将它们附加到 C# 中的列表视图中,我尝试检索的数据介于用户指定的开始日期和结束日期之间。我会尽量具体:

  • 我正在使用访问 .mdb 数据库
  • 我正在开发 Visual C# 2010,winforms。

所以我有一个由一个组合框和一个列表视图组成的表单,组合框有 12 个项目,一年中的每个月一个,我想要实现的是将访问数据库中的数据附加到列表视图中那个月。

相关代码如下:

这是 ComboBox 的项目选择更改的事件处理程序,这是我做重要事情的地方:

    private void cbMonth_SelectedIndexChanged(object sender, EventArgs e)
    {
        //CONEXION is a constant string with the path to the database
        connectDB = new OleDbConnection(CONEXION);
        //getting the selected month from the combo
        int month = cbMonth.SelectedIndex;
        //instanciating a string for the query
        string query = getQuery(month);
        // debugging XD
        MessageBox.Show(query);
        // this will be the dataTable with the data retrieved
        DataTable EventTable = connectDB(query);

        //filling the listview
        fillListView(EventTable);
        conexionDB.Close();


    }

现在这个方法是返回查询字符串的方法,它相当简单,但我认为问题出在此处,所以请注意 xd

    public string getQuery(int month)
    {
        string query = "";
        //just placeholders
        DateTime ini = DateTime.Now, fin = DateTime.Now;
        switch (month)
        {
            case 0:
                ini = DateTime.Parse("01/01/2013");
                fin = DateTime.Parse("31/01/2013");
                break;
            case 1:
                ini = DateTime.Parse("01/02/2013");
                fin = DateTime.Parse("28/02/2013");
                break;
            case 2:
                ini = DateTime.Parse("01/03/2013");
                fin = DateTime.Parse("31/03/2013");
                break;
            case 3:
                ini = DateTime.Parse("01/04/2013");
                fin = DateTime.Parse("30/04/2013");
                break;
            case 4:
                ini = DateTime.Parse("01/05/2013");
                fin = DateTime.Parse("31/05/2013");
                break;
            case 5:
                ini = DateTime.Parse("01/06/2013");
                fin = DateTime.Parse("30/06/2013");
                break;
            case 6:
                ini = DateTime.Parse("01/07/2013");
                fin = DateTime.Parse("31/07/2013");
                break;
            case 7:
                ini = DateTime.Parse("01/08/2013");
                fin = DateTime.Parse("31/08/2013");
                break;
            case 8:
                ini = DateTime.Parse("01/09/2013");
                fin = DateTime.Parse("30/09/2013");
                break;
            case 9:
                ini = DateTime.Parse("01/10/2013");
                fin = DateTime.Parse("31/10/2013");
                break;
            case 10:
                ini = DateTime.Parse("01/11/2013");
                fin = DateTime.Parse("30/11/2013");
                break;
            case 11:
                ini = DateTime.Parse("01/12/2013");
                fin = DateTime.Parse("31/12/2013");
                break;
        }
        query = "select * from Events where (EventsDate between #" +ini.ToShortDateString() + "# and #" + fin.ToShortDateString() + "#)";
        return query;
    }

此方法返回我测试过的预期查询

现在是进行查询的方法,我认为这种方法也很简单

    public DataTable connectDB(string query)
    {
        conexionDB = new OleDbConnection(CONEXION);

        //making the query
        OleDbDataAdapter adapter = new OleDbDataAdapter(query, conexionDB);

        // filling a datatable
        DataTable EventTable= new DataTable();
        adapter.Fill(EventTable);
        return EventTable;
    }

现在这是填充列表视图的方法

    public void fillListView(DataTable EventsTable)
    {
        for (int i = 0; i < EventsTable.Rows.Count; i++)
        {
            DataRow row = EventosTable.Rows[i];

            string nae= row["EventName"].ToString();
            MessageBox.Show(name);
            DateTime date = DateTime.Parse(fila["EventPrice"].ToString());
            int price = int.Parse(fila["EvenPrice"].ToString());
            string description = fila["EventDescrip"].ToString();

            Event myevent = new Event();
            myevent.Name = name;
            myevent.Date= date;
            myevent.Price= price;
            myevent.Description= description;
            EventsListView.Add(myevent);

            ListViewItem item = new ListViewItem();
            item.Text = name;
            item.SubItems.Add(date.ToString());
            item.SubItems.Add(price.ToString());
            item.SubItems.Add(description.ToString());
            EventsListView.Items.Add(item);
        }
    }

好吧,一切都很好..问题是,如果我选择比组合框中的任何事件大的月份,则列表视图将每个月加载 <= 到所选月份,比如我有一个 eventDate "23/ 02/2013”​​和另一个带有 eventDate “20/12/2013”​​的事件,我在列表视图的组合框中选择了 12 月,而不是仅加载具有相应日期到 12 月的事件,它加载了这两个事件。

所以就像查询说的那样,用 eventDate <= 加载每个事件到选择的月份。帮助?

4

1 回答 1

0

尝试以下两件事之一:

1) 将日期字符串更改为 MM/dd/yyyy 格式:

   case 10:
       ini = DateTime.Parse("12/01/2013");
       fin = DateTime.Parse("12/31/2013");
       break;

2) 或使用 DateTime.ParseExact() 方法指定格式:

   case 11:
       ini = DateTime.ParseExact("01/12/2013", "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture);
       fin = DateTime.ParseExact("31/12/2013", "dd/MM/yyyy", System.Globalization.CultureInfo.InvariantCulture);
       break;
于 2013-06-04T06:12:56.083 回答