이렇게 했거든요~~~
procedure Tcusinput.BitBtn1Click(Sender: TObject);
begin
with frmMain.ADOQuery1 do begin
close;
SQL.Clear;
SQL.Add('select * from table1 where a='''+edit1.text+'''');
open;
showmessage(inttostr(recordcount));
case recordcount of
1: showmessage('이미등록되어있네');
0:
// frmMain.ADOQuery1.Close;
with frmMain.ADOQuery2 do begin
Close;
SQL.Clear;
sql.add(format('insert into cust(a, b)values(''%s'', ''%s'')',
['2880',edit1.text]));
Execsql;
end;
end;
end;
end;
대답하기 곤란하네요.
ADO쓴건가요?
BDE를 쓴건가요?
것두아니면 DB 가 아닌가?
암턴 DB라면 Access 하신후 꼭 닫아주세요.
ADO는 레코드셋까정 닫아야함니다.
그럼.