The datagrid has the column...BookName, DateRetun and DateIssued. Can anyone tell me how to approach this please.
Code:
cn.ConnectionString = "data source = Rayon\Rayon; initial catalog = library; uid=sa; password=minnie"
cn.Open()
cmd.Connection = cn
cmd.CommandType = cmd.CommandText
cmd.CommandText = " select BookName, DateIssued, DateReturn from Book, BookReturn, BookBorrow" & "where " bookreturn.isbnno = Book.ISBNno and BookBorrow.ISBNno = Book.ISBNno"
rdr = cmd.ExecuteReader

