Q&A

  • ADO로 MS 액세스 사용시 필드이름을 알아낼수 있을까요?
access 디비가 다음과 같은 형태입니다.

날짜 | 항목1 |  항목2  | ...... 항목n  | 비고 | 기타 |

ADO 쿼리로 연결해서 쓰고있는데..

위 항목n이라는게 일정하지 않습니다. (개수나 이름이 일정하지않음)

예를들어 필드이름이 '바나나'가 될수도 있고 '사과가'될수도 있고..
암튼 이름은 어떤것도 될수가있고 갯수도 제각각입니다.

런타임에 MDB파일을 열어서 위 항목(필드)의 이름을 알수있는 방법이
있을까요?

답변기다리겠습니다.
1  COMMENTS
  • Profile
    사이비 2002.03.02 23:15
    팁란에 보기까 테이블 의 필드 가져오기가 있네여..


    procedure TForm1.Button1Click(Sender: TObject);
    const  
    MyFielddefs: array[ftUnknown..ftGraphic] of string [8] =
      ('Unknown', 'String', 'Smallint', 'Integer', 'Word',
      'Boolean', 'Float', 'Currency', 'BCD', 'Date',
      'Time', 'DateTime', 'Bytes', 'VarBytes', 'Blob',
      'Memo', 'Graphic');

    var
      i, Indx: integer;
      Definition: string;
    begin
      for i := 0 to Table1.FieldCount - 1 do begin
        Definition := Table1.Fields[i].DisplayLabel;
        Definition := Definition + ' ' +
          MyFieldDefs[Table1.Fields[i].DataType];
        Table1.IndexDefs.Update;
        if Table1.Fields[i].IsIndexField then begin
          Indx := Table1.IndexDefs.Indexof(Table1.Fields[i].Name);
          if Indx > -1 then
            if ixPrimary in Table1.IndexDefs[Indx].Options then
              Definition := Definition + ' (Primary)';
        end;
        Listbox1.Items.Add(Definition);
      end;
    end;