I have an ADODB Recordset which I want to export to a CSV file. However i need to play around with some of the fields before export, ie change the Name field to 2 fields consisting of First Name and Surname - So John Doe in my DataBase will be 2 columns in an excel CSV file.
My theory is to populate a recordset (done), and then create a Temp table (done - making sure any existing Temp table is deleted). Then to write record by record to the Temp table the recordset records, and finally exporting the table. How can I write a recordset record to a specific table whilst filtering the records content?
solo7
My theory is to populate a recordset (done), and then create a Temp table (done - making sure any existing Temp table is deleted). Then to write record by record to the Temp table the recordset records, and finally exporting the table. How can I write a recordset record to a specific table whilst filtering the records content?
solo7