我对如何从访问数据库中获取数据有点困惑。首先在列表中收集它然后从您的列表中获取这些数据是否合适,或者直接在您的数据库中获取它是可以的?
我的代码工作得很好,但我想知道是否有更好的方法来做到这一点?:
private void button3_Click(object sender, EventArgs e)
{
OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\redgabanan\Desktop\Gabanan_Red_dbaseCon\Red_Database.accdb");
connection.Open();
OleDbDataReader reader = null;
OleDbCommand command = new OleDbCommand("SELECT * from Users WHERE LastName='"+textBox8.Text+"'", connection);
reader = command.ExecuteReader();
listBox1.Items.Clear();
while (reader.Read())
{
listBox1.Items.Add(reader[1].ToString()+","+reader[2].ToString());
}
connection.Close();
*我直接从数据库中获取我的记录,然后将其显示在列表框中。