Q&A

  • oracle table로 text file loading 하는 방법은?
프로그램상에서 text file로 된 데이터를 읽어 들여서 oracle table에 로딩하는 방법을 알고 싶군요..



1  COMMENTS
  • Profile
    박정일 1999.07.28 01:21
    부산사는 사람입니다.



    Text File을 별도의 Loading없이 바로 DB로 넣는 법입니다.



    procedure TForm1.Button1Click(Sender: TObject);

    begin

    with table1 do begin

    Insert;

    Field[0].AsString = 'Test001.txt';

    TMemoField(table1.Fields[1]).LoadFromFile('c:tempTest001.txt');

    Post;

    end;

    end;



    B.RGDS/JiPark