I am trying to write an application which allows a user to create a database, add tables and fields. The information gathered in the gui is saved in a predefined configuration table which is used to configure another gui allowing the user to add and view data in the created database. I have created a number of maintenance forms to allow me to enter data and save it to the 'configuration' table but I'm not sure where to start when creating the user defined database. Can this be done in the Application Framework or do I need to interface to the DDT (which I haven't actually looked at yet). Could someone possibly point me in the right direction.
Many thanks.
Depending on the complexity of your application and needs for database deployment, this can be a very long and cumbersome task. But if you are going to travel down this path, I recommend using SMO (SQL Server Management Objects).
Thanks for the pointer
Regards