i have to make a setup for window application so i need to create a database on clinet machine .so i decided that i will create it using .sql file which i will add in my resource file.as there is a option to execute that file on first run of my program that will create my database .
but as one of my friend suggest me that .sql file should be executed from command line of sql express.
so i am search a lot for how to execute a .sql file from c# code in sql server 2008 express command line ?
i already readed these questions
How can I execute a .sql from C#?
FileInfo file = new FileInfo(Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "HotelReservationScript.sql")); StreamReader fileRead = file.OpenText(); string script = fileRead.ReadToEnd(); fileRead.Close(); string strConn = System.Configuration.ConfigurationManager.ConnectionStrings["MasterConnectionString"].ConnectionString; SqlConnection con = new SqlConnection(strConn); con.Open(); ExecuteScript(con, script);
protected virtual void ExecuteScript(SqlConnection connection, string script)
{
string[] commandTextArray = System.Text.RegularExpressions.Regex.Split(script, "\r\n[\t ]*GO");
SqlCommand _cmd = new SqlCommand(String.Empty, connection);
foreach (string commandText in commandTextArray)
{
if (commandText.Trim() == string.Empty) continue;
if ((commandText.Length >= 3) && (commandText.Substring(0, 3).ToUpper() == "USE"))
{
throw new Exception("Create-script contains USE-statement. Please provide non-database specific create-scripts!");
}
_cmd.CommandText = commandText;
_cmd.ExecuteNonQuery();
}
}
ERROR MESSAGE
Could not find file 'C:\Users\Kiran\Desktop\rahhul\Bookster_28\HotelReservationSystem\HotelReservationSystem\bin\Debug\HotelReservationScript.sql'.
EDITED :
i also try this but same error
FileInfo file = new FileInfo(Path.Combine(Path.GetDirectoryName(Environment.GetCommandLineArgs().ToString()), "HotelReservationScript.sql"));