Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL データベースに BIT フィールドのフィールドがあります。
その分野で読みたい。1 の場合、チェックボックスは true、それ以外の場合は false です。
このコードから始めましたが、エラーが発生しました。これを行う方法に関するアドバイスはありますか?
If (MyReader["TArchive"] == 1) then
よろしくお茶
これを試して:
myCheckbox.Checked = Convert.ToBoolean(MyReader["TArchive"]);