I trying to import an Excel file that has about 6500 rows and 50 columns into a datawindow, but the process is taking too long, about 5 minutes
when I run the import and I can see in the windows task manager how the process PB11.5 is comsuming a lot of RAM memory at imported the row 450 it takes above 300 MB and increasing.
How can I improve the import process?
io_file_imported = create OleObject
io_file_imported =workBooks.Open(ls_pathFileName)
Inside a Loop
io_file_imported.Application.workbooks(1).woorksheets(1).
Cell(Row, Column).value
PowerBuilder 11.5
Pentium M 1.6Ghz
512 MB Ram
when I run the import and I can see in the windows task manager how the process PB11.5 is comsuming a lot of RAM memory at imported the row 450 it takes above 300 MB and increasing.
How can I improve the import process?
io_file_imported = create OleObject
io_file_imported =workBooks.Open(ls_pathFileName)
Inside a Loop
io_file_imported.Application.workbooks(1).woorksheets(1).
Cell(Row, Column).value
PowerBuilder 11.5
Pentium M 1.6Ghz
512 MB Ram