Code:
cmd.Connection = cn
cmd.CommandType = CommandType.Text
cmd.CommandText = " select BookName from Book "
rdr = cmd.ExecuteReader
Do While rdr.Read
cbdvuser.Items.Add(rdr.Item("BookName"))
Loop
cn.Close()

