Hi please having a problem with the connection string. Trying to call a stored procedure in C#... HERE'S MY CODE
SqlConnection conn = new SqlConnection("Hunt_Lisa");
SqlCommand command = new SqlCommand("blkFinance_noheader", conn);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add(new SqlParameter("@Path", fn));
command.ExecuteNonQuery();
I appreciated your help in advance...