Our current Excel components use Excel Automation to work with Excel documents. This allows us to run macros and support almost any scenario but is not ideal for server environments. If you don't need to run any macros a better option will be to use the Database components to read from and write to Excel. Here are some tips to get you going.
- Download and install the Microsoft Access Database Engine Redistributable. This will install the OleDb drivers required to work with Excel through a database component.
- Use the DatabaseRead and DatabaseWrite components when reading or writing to an Excel document.
- The connectionstring for reads looks like "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\temp\write.xlsx;Extended Properties="Excel 12.0 Xml;HDR=YES;IMEX=1"
- For writing change IMEX=1 to IMEX=3.
- If you do not have headers then HDR=NO.
- For older files you can change the Extended Properties of the connectionstring.
- You can get more connectionstring information here.
- It seems as if a blank document must be initialised with a header for every row you want to write to. Just make it a space if you don't have headers.
- Read from a sheet: "select * from [Sheet1$]". Remember the $.
- Read from a range: "select * from MyRange" or "select * from [Sheet1$A1:B10]".
- Insert into a sheet with headers: "insert into [Sheet1$] (id,name) values('123','John')".
- If you don't have header use F1, F2, F... to refer to fields e.g. "select F1, F3 from [Sheet1$]".
- It supports other sql clauses like UPDATE and WHERE as illustrated here.
Some more info: