I want to create a dynamic table in which the name of the table and the names of the table columns are received from the input of the text box and then the table is created in the database.
String sql = "CREATE TABLE @TableName (@id INTEGER, @Name VARCHAR(50))";
cmd.parameters.AddWithValue("@id", textbox1.text);
cmd.parameters.AddWithValue("@Name", textbox2.text);
cmd.parameters.AddWithValue("@TableName", textbox3.text);
```