Query.sql.add('select id, password from table');
Query.open;
while not Query.Eof do begin
if Query.FieldValues['id'] = Edit_id.Text then begin
if Query.FieldValues['password'] = Edit_password.Text then begin
"로그인성공했을때의 이벤트~~~~쓰세욥";
end;
end;
Query.Next;
end;
또는
Query.sql.add('select id, password from table where id='+Edit_id.Text+' and password='+Edit_password.Text);
Query.open;
if Query.isNull then "로그인성공했을때 이벤트~~";
IsNull 이 있나 모르겠네엽...하여간..값이 있냐 없냐 확인해서 있으면 실행시키게 하시면 될껍니당...
쿼리를 날려서 아뒤와 비번을 가져와서 비교를 합니다..
그래서 일치하면 다음폼으로 이동시키면 되고요..
틀리면 경고 메세지를 보여주면 되겠져ㅣ...
설마.쿼리 날리는 법을 모르시는건 아니겠져??