I have an access db template. i want to copy that template and rename table1 in the template as table1 already contains certain fields
Also is there any way to copy table1 and create a table2, rename it and keep the fields in table1.
Any way to do this in Delphi?
In Access : Right click on the table and select "Export" There you have the option to export the table to another Access database.
Edit : As for Delphi,yes it is possible. That would require creating the database and the tables (all in code). You can find examples here on SO on how to do that (example : Delphi: Creating Access DB (.mdb) without Ms Access)