Hi
I want to store value from a row into a variable.
I have used the following coding but it is not working properly.
It is generating the following error:
Index was outside the bounds of the array.System.Data
Please note that the table contains only one row.
objSqlConnection.ConnectionString = connectionStringSetting;
try
{
objSqlConnection.Open();
SqlCommand objSqlCommand = new SqlCommand("select FineCharges from FINECHARGES where FineID = 1", objSqlConnection);
SqlDataReader objDataReader = objSqlCommand.ExecuteReader();
int ChargeFine;
while (objDataReader.Read())
{
ChargeFine = Convert.ToInt32(objDataReader[1].ToString());
MessageBox.Show("Fine" + Convert.ToString(ChargeFine));
}
objSqlConnection.Close();
}
catch (SqlException e1)
{
MessageBox.Show(e1.Message + e1.Source);
objSqlConnection.Close();
}
catch (Exception e2)
{
MessageBox.Show(e2.Message + e2.Source);
objSqlConnection.Close();
}
Can anybody tell me what is the error?
Please help me out!
Thanks in advance!