2,892 questions
dim SqlCreator as string="Create Table Table1" & vbNewLine & "Column1 Text(50)" ' What should I do to create the table?
Use an OleDbCommand to execute a SQL statement
https://learn.microsoft.com/en-us/dotnet/api/system.data.oledb.oledbcommand?view=dotnet-plat-ext-7.0
and moreover, use the correct SQL syntax to create a table: