안녕하세요.
아래와 같이
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으로 뿌려줄려고 합니다.
어떻게 해야하나요?
begin
Active := false;
SQL.Clear;
SQL.add(' select stornm from mmsa110m where storcd = :storcd ')
SQL.add(' and areacd = :areacd ')
ParamByName('storcd').AsString := txtJumcd.Text;
ParamByName('areacd').AsString := areacd;
Active := true;
Label1.Caption := FieldByName('stornm').AsString;
end;
추출된 결과는 하나여야 합니다.
김정균 wrote:
> 안녕하세요.
> 아래와 같이
>
> 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으로 뿌려줄려고 합니다.
> 어떻게 해야하나요?