I've been struggling with this dilemma and don't know what the answer is. I have created a VS 2015 windows form project and that connects to a remote SQL Server database. I know how to do the development but have a huge question about deploying the run time to another person's PC. Will it be necessary for me to install SQL Server on the end user's PC in order for them to be able to run the code that queries the SQL database? The database is located on a remote server somewhere. I have the proper connect string to it and it works on my PC both in VS debug and as a compiled application.
But, I have SQL server installed on my computer but my end users don't.
I have .net framework 4.0 installed and have references to several of the System.xxx.dlls including System.Data.dll which allows me to Import System.Data.SqlClient into my project. That allows me to create all of the SqlXxxx objects I need.
So, do I have to anything special on my end users' computers to enable them to run my application?
Thanks in advance,
Jerry
Jerry Scannell
But, I have SQL server installed on my computer but my end users don't.
I have .net framework 4.0 installed and have references to several of the System.xxx.dlls including System.Data.dll which allows me to Import System.Data.SqlClient into my project. That allows me to create all of the SqlXxxx objects I need.
So, do I have to anything special on my end users' computers to enable them to run my application?
Thanks in advance,
Jerry
Jerry Scannell