The database and the Db access APIs have no concept of char
. Your CHAR(1)
is mapped to string
.
probably the most sensible option:
string comboLabel = (string)formCombo.Rows[j]["Combo_Label"];
but if you really want a char
:
char comboLabel = ((string)formCombo.Rows[j]["Combo_Label"])[0];