このクエリでデータベースにアクセスしようとすると、エラーが発生します
invalid column name 'sandeep' which is the name of the patient ie itemArray[3]
コード:
case "patient":
string queryPatientCheck = @"select *
from patient
where
[patientID]={0} and
[patientName]={1}";
queryPatientCheck = string.Format(queryPatientCheck, itemArray[2], itemArray[3]);