Hi
i am useing access databasr for windows application
i have certain table which executes the result in sql view
of an ms acces when we write the query.but it is not executing in
C# it is showing with out error data table is empty
below is my code
my_con.Open();
DataTable dt = new DataTable();
OleDbCommand cmd = new OleDbCommand("select * from Batch", my_con);
OleDbDataAdapter ad = new OleDbDataAdapter(cmd);
ad.Fill(dt);
comboBox1.ValueMember = "Batch_Name";
comboBox1.DisplayMember = "Batch_Name";
comboBox1.DataSource = dt;
comboBox1.Text = "select id";
so is it version problem of ms access
please help me