with adoQuery1 do
begin
close;
sql.clear;
sql.add('select * from p_custom, p_tape, p_loan');
sql.add('where p_custom.고객일련번호 = p_loan.고객일련번호');
sql.add('and p_tape.테잎일련번호 = p_loan.테잎일련번호');
sql.add('where p_custom.고객이름 = :고객이름');
Parameters.ParamByName('고객이름').Value := edit2.Text;
open;
end;
데이터베이스내에서 실행시키면 값이 잘 나오는데 델파이에서 하니
응용프로그램이 잘못된 값을 사용한다고 나오네요 --;
답변 부탁드립니다.
좋은 하루 되세요
마직막 where는 and로 바꿔서 해보세요...
즐프하세요...