SQL Server 2005データベースからチェックボックスリストの値を取得したいのですが、 。car
のようなn個の値を含む列を持つテーブルがありますBMW,Jaguar,Royal
。
次に、チェックボックスリストの特定のチェックボックスについてそれらを取得します。私は試した:
for (int x = 0; x < checkedListBox1.Items.Count; x++) {
if (checkedListBox1.CheckedItems[x].ToString()) {
checkedListBox1.Text = sdr.GetString(16).Split(",");
}
}
しかし、それは機能していません。次のエラーが発生します:
'string.Split(params char [])'に最適なオーバーロードされたメソッドの一致には、いくつかの無効な引数があります
これはSQLクエリです。
select
RegisterNo, RegistrationDate, Stimulation, PationName,
DateOfBirth, ContactNo, Occupation, Age, Sex, Chief_Complain,
Investigation_Result, PastHistoryAny, Physical_Examination,
Ref_By_Doctor, Medications, Prognosis, Electro_Therapy,
Neuro_Rehabilitation, Ortho_Rehabilitation,
Cardio_Pulmonery_Rehabilitation, Sports_Rehabilitation
from
Physio_cureTable
where
RegisterNo = @RegisterNo
and Syncoperation <> 'D