Arkadaşlar öncelikle forumda yeniyim, eksiğim olursa affola.
Benim C# ta yapmaya çalıştığım normalde projelerimde hata almadıgım kod
şimdi çalışmıyor error da vermiyor boş sorgu döndürüyor.
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
SqlConnection conn = new SqlConnection("Data Source=LENOVO-PC;Initial Catalog=DB_BOOK;Integrated Security=True");
SqlCommand command = new SqlCommand();
command.CommandText = "select * from tbl_author";
command.Connection = conn;
command.CommandType = CommandType.Text;
conn.Open();
SqlDataReader dr = command.ExecuteReader();
while (dr.Read())
{
comboBox1.Items.Add(dr["A_NAME"]);
conn.Close();
}
}