mehdio
سه شنبه 28 تیر 1390, 20:52 عصر
سلام من یک برنامه به زبان C# نوشتم که نمره دانشجویی که شماره دانشجویی اش 456 است را در متغیر y قرار می دهد اما در صورتی که دانشجوی مورد نظر وجود نداشته باشد error می دهد چطور می توانم کاری کنم که این error را ندهد و به جایش یک پیام مناسب بدهد
کد برنامه:
SqlConnection objConnection = new SqlConnection("Data Source=computer1;Initial Catalog=mehdi;Integrated Security=True");
SqlCommand objCommand = new SqlCommand();
objCommand.Connection = objConnection;
objCommand.CommandText = "select namre from table_2 where number='456'";
objConnection.Open();
int y=(int) objCommand.ExecuteScalar();
objConnection.Close();
کد برنامه:
SqlConnection objConnection = new SqlConnection("Data Source=computer1;Initial Catalog=mehdi;Integrated Security=True");
SqlCommand objCommand = new SqlCommand();
objCommand.Connection = objConnection;
objCommand.CommandText = "select namre from table_2 where number='456'";
objConnection.Open();
int y=(int) objCommand.ExecuteScalar();
objConnection.Close();