Jumat, 04 Agustus 2017

AX : Insert CSV Write IO dengan Container AX 2012

{ 
    container c; 
    CommaIo myfile; 
    FileIoPermission perm; 
  
    #define.ExampleFile(@"c:\myfile.txt") 
    #define.ExampleOpenMode("w") 
  
    // Set code access permission to help protect the use 
    // of CommaIO.new 
    perm = new FileIoPermission(#ExampleFile, #ExampleOpenMode); 
    perm.assert(); 
  
    myfile = new CommaIo(#ExampleFile, #ExampleOpenMode); 
  
    // Assign the entries in the container according to record layout. 
    c = [1,"MyText",1.324,"Last field"]; 
    // Write this record according to file format  
    // (record/field delimiters). 
    myfile.writeExp(c); 
     
    // Close the code access permission. 
    CodeAccessPermission::revertAssert(); 
}

Tidak ada komentar:

Posting Komentar