hello all
i have problem :
string sssql = "SELECT *FROM BooksCatalog WHERE BookID = '" + TB[2].Text + "'";
ds =DBC.Read(sssql); // class that read from sql
foreach (DataRow row in ds.Tables[0].Rows)
{
row["BorrowState"] = "good"; // that not write that in my database here its the problem
}
please help me
thankss