I have a Windows application which uses a database on the server. My connection string is something like:
con = new SqlConnection("Server=10.100.10.100;Initial Catalog=MyDB; Integrated Security = true");
Is there any way I can only install only the SQL Server database engine or any such which should communicate to database on the server, but SQL Server Management Studio should not be installed on the client's machine as data should not be accessible or shown to the end user.
how about installing only SQLEXPR_x64_ENU which is available on miscrosoft website, sizes around 135 mb. Would that help me with connecting my app to database without studio?
Thanks in advance.