Q&A

  • 계산 필드의 소트가 안되면, temp table 만드는 법이라도좀..
저기 계산 필드의 소트가 되지 않으면, 말이에요.. temp table이란걸 쓰면 된다는데,

그게 어떤건지.. 또 어떻게 해야 말들수 있는지 아시분들.. 좀 알려 주세요.

무지 시급하거든요.. 제발 plz

1  COMMENTS
  • Profile
    여영식 2000.01.21 02:38
    TTable, TQuery의 메소드 중에서 CreateTable이란 메소드를 사용합니다.

    아래 예제는 델파이 헬프에있는 CreateTable Example입니다.



    if not Table1.Exists then { Don't overwrite an existing table }

    begin

    with Table1 do

    begin

    Active := False; { The Table component must not be active }



    { First, describe the type of table and give it a name }

    DatabaseName := 'DBDEMOS';

    TableType := ttParadox;

    TableName := 'CustInfo';



    { Next, describe the fields in the table }

    with FieldDefs do

    begin

    Clear;

    Add('Field1', ftInteger, 0, True);

    Add('Field2', ftString, 30, False);



    end;



    { Next, describe any indexes }

    with IndexDefs do

    begin

    Clear;

    { The first index has no name because it is a Paradox primary key }

    Add('', 'Field1', [ixPrimary, ixUnique]);

    Add('Fld2Indx', 'Field2', [ixCaseInsensitive]);

    end;



    { Now that we have specified what we want, create the table }

    CreateTable;

    end;

    end;



    맨발의청춘 wrote:

    > 저기 계산 필드의 소트가 되지 않으면, 말이에요.. temp table이란걸 쓰면 된다는데,

    > 그게 어떤건지.. 또 어떻게 해야 말들수 있는지 아시분들.. 좀 알려 주세요.

    > 무지 시급하거든요.. 제발 plz