Trying to Run a SQL script file, Getting Syntax error : Incorrect syntax near '`'
I’m trying to execute a SQL script dump file which have multiple tables. I want to read data from this dump file and make a sqlite(offline) database. I’m using following SMO procedures and code is following string sqlConnectionString = @"Server=localhost\SQLEXPRESS;Database=master;Trusted_Connection=True;"; FileInfo file = new FileInfo("podcat-22-06-2022.sql"); string script = file.OpenText().ReadToEnd(); SqlConnection conn = new SqlConnection(sqlConnectionString); SqlCommand… Read More Trying to Run a SQL script file, Getting Syntax error : Incorrect syntax near '`'