C# Filling Combo box with Column name of Database not Column values

前端 未结 4 1956
无人及你
无人及你 2021-01-29 11:19

I know it\'s been asked many times and there\'s so many resources about this but believe me i tried those, Unfortunately same thing is always happen. I really don\'t know why my

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-29 12:14

    Try to close and dispose of reader and close the connection.

    reader.close;
    reader.dispose;
    
    con.close();
    

提交回复
热议问题