How do I change this:
using (SqlCommand myCommand = myConnection.CreateCommand())
{
myConnection.Open();
myCommand.CommandText = "SELECT FormID FROM tbl_Form";
using (SqlDataReader reader = myCommand.ExecuteReader())
{
while (reader.Read())
{
int FormID = reader.GetInt32(reader.GetOrdinal("FormID"));
MessageBox.Show(FormID.ToString());
}
}
}
to get MAX(FormID) ?
My natural tendency is to throw a MAX around FormID but I’m getting an IndexOutOfRange exception.
When you select the maximum id you shouldn’t use a
SqlDataReader– the query returns just one item, which by default is unnamed so your existing query breaks because it expects a result named “FormID” – although you could have “fixed” your query by using"SELECT MAX(FormID) as FormId FROM tbl_Form". Instead useExecuteScalar():