Q&A

  • StringGrid에 DB 데이타 삽입하는 방법!!


SQL.ADD('Where DutyNumber<18 and Division =1');

open;

for i := 0 to 1 do

begin

for j := 1 to RecordCount do

begin

StringGrid2.cells[i,j]:='???';

end;

end;







** '???'-> 부분을 어떻게 코딩하나요?



StringGrid 에 Query 조건에 맞는 데이타를 입력할려고



하는데 어떻게 코딩해야 하나요?



위의 방법이 아니더라도 아시면 갈켜 주세요~~







2  COMMENTS
  • Profile
    바람개비 2001.01.29 16:54
    요렇게...



    바라미~~

    > SQL.ADD('Where DutyNumber<18 and Division =1');

    > open;

    i:=1;

    query1.first; // 굳이 없어도 되지만, 혹시나...

    while (not eof.query) do begin

    Stringgrid2.Cells[0,i]:=query.fieldbyname('field1').asString;

    Stringgrid2.Cells[1,i]:=query.fieldbyname('field2').asString;

    Stringgrid2.Cells[2,i]:=query.fieldbyname('field3').asString;

    ...

    query1.next

    end;





  • Profile
    jin 2001.01.29 21:05
    바람개비 wrote:

    > 요렇게...

    >

    > 바라미~~

    > > SQL.ADD('Where DutyNumber<18 and Division =1');

    > > open;

    > i:=1;

    > query1.first; // 굳이 없어도 되지만, 혹시나...

    > while (not eof.query) do begin

    > Stringgrid2.Cells[0,i]:=query.fieldbyname('field1').asString;

    > Stringgrid2.Cells[1,i]:=query.fieldbyname('field2').asString;

    > Stringgrid2.Cells[2,i]:=query.fieldbyname('field3').asString;

    > ...

    > query1.next

    > end;

    >

    >