안녕하세요.
아래와 같이
SQL.Text := 'select stornm from mmsa110m where storcd = :storcd
and areacd = :areacd';
ParamByName('storcd').AsString := txtJumcd.Text;
ParamByName('areacd').AsString := areacd;
ExecSQL;
select 문으로 추출한 데이타를 label.caption으로 뿌려줄려고 합니다.
어떻게 해야하나요?