sql.add('select * from information where p_kind='+edit3.text+'');
에디트창에 문자열을 입력하믄 디비에서 그 문자열을 찾는 코드인데요...
이상허게 에러가 나는군요 T.T
이것땜시 날새븐졌어요 ToT
좀 고쳐주세요~~~
project project1.exe raised exception class EDBEngineError with message 'Genaral
SQL error.
[Micorsoft][ODBC Microsoft Access Driver] to few parameters. Excepted 1.'.process
stopped . Use Step of Run to continue.
라는 에러가 뜨거든요^^
> sql.add('select * from information where p_kind='+edit3.text+'');
> 에디트창에 문자열을 입력하믄 디비에서 그 문자열을 찾는 코드인데요...
> 이상허게 에러가 나는군요 T.T
> 이것땜시 날새븐졌어요 ToT
> 좀 고쳐주세요~~~
>
> project project1.exe raised exception class EDBEngineError with message 'Genaral
> SQL error.
> [Micorsoft][ODBC Microsoft Access Driver] to few parameters. Excepted 1.'.process
> stopped . Use Step of Run to continue.
> 라는 에러가 뜨거든요^^
==========================
이렇게 해보세요
with query1 do
begin
close;
sql.clear;
sql.add('select * from information where p_kind=:p_kind');
parambyname('p_kind').asstring:=edit3.text;
open;
end;