Q&A

  • sql을 이용한 삭제부분입니다... 도움을 받으려고 합니다..정말 아주 많이 급하거든요..
어디를 어떻게 고쳐야 할지 잘 모르겠어요 ..

제 델파이를 시작한지 며칠 안되서...

도움을 청합니다..

아주급하거든요....

with query1 do

begin

close;

sql.clear;

sql.add('delete from dlp4');

sql.add('where name ='''+edit1.text'''' );

sql.add('and code = '''+edit2.text+'''');

sql.add('and teachar ='''+combobox2.text'''');

sql.add('and old ='''combobox1.text+'''');

execsql;

showmessage('삭제 하였습니다');

form1.query1.close;

form1.query1.open;

combobox1.text:='';

combobox2.text:='';

edit1.text:='';

edit2.text:='';

6  COMMENTS