i want to to display the balance from the database to a label.
here my code i got so far
SqlDataReader readbalance;
sqlCommandbalance.Connection.Open();
sqlCommandbalance.CommandText = "SELECT * FROM Accounts WHERE accountID = '" + dataSet11.Tables[0].Rows[0]["accountID"] + "'";
readbalance = sqlCommandbalance.ExecuteReader();
string balanceDB = null;
while (readbalance.Read())
{
balanceDB = readbalance["balance"].ToString();
}
sqlCommandbalance.Connection.Close();
balanceShow.Text += "" + balanceDB.ToString();;
i am having a problem on this line
sqlCommandbalance.CommandText = "SELECT * FROM Accounts WHERE accountID = '" + dataSet11.Tables[0].Rows[0]["accountID"] + "'";
keep saying cnt find row at position 0 but i am testing this code on the commandtext dataSet11.Tables[0].Rows[0]["accountID"] not sure if it right or not