Q&A

  • 어라? 검색이 안뒤야요~~ (sql)
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.

라는 에러가 뜨거든요^^

2  COMMENTS
  • Profile
    김종섭 2001.01.14 03:51
    쪼까니 wrote:

    > 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;

  • Profile
    조복기 2001.01.14 00:56


    sql.add('select * from information where p_kind= :p_kind');

    parambyname('p_kind').AsString := Trim(edit3.text);

    open;





    쪼까니 wrote:

    > 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.

    > 라는 에러가 뜨거든요^^