Is it possible to Create a New table in the Database using any Action. The application I have designed is based on DateTimePicker. Is it possible to Create a table “March”, “April” so on, when the user selects March or April for the first time. So that records of that particular month will be updated in that particular table.
Share
Use a query similar to
to find whether table exists. If it does not exist you can fire a query similar to :
for creating a table. Then you know which table you created. Just fire relevant
INSERTqueries.Note that all of the above
SQLqueries need to be fired usingSqlCommandobject.