你好我试图从数据库中获取一些数据并将它们附加到C#中的列表视图中,我试图检索的数据是在用户指定的startdate和enddate之间。我会尝试尽可能具体:
所以我有一个由一个组合框和一个listView组成的表单,ComboBox有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;
}
现在这是填充listview的方法
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);
}
}
一切都运行得很好..问题是,如果我为组合框中的任何事件选择一个更大的月份,列表视图将加载每个月&lt; =到所选的月份,比如我有一个事件与eventDate“23/02/2013”和eventDate“20/12/2013”的另一个事件,我在组合框中选择了12月的listview而不是只加载具有相应日期到12月的事件,它加载了两个事件。
所以就像查询所说的那样,使用eventDate&lt; =加载每个事件到选定月份。 帮助
答案 0 :(得分: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;