1
I made my first program and now I need to run it on the client. How do I?
I made my database with SQL Server Express 2016. My windows is 64 bits. I thought of installing the same bank in the client, but the system there is 32 bits.
Is there any way to pass the database file along with my program? No need to install SQL Server?
This is my connection string:
private string StrCon = @"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MartinezSis1.0;Data Source=LATITUDENOTE\SQLEXPRESS";
The question is confused, but perhaps it is duplicate: https://answall.com/q/80849/101
– Maniero
What technology did you use to develop?
– Leonel Sanches da Silva
I used the language c# . net
– Gilberto Lira da Cruz
In my machine is running perfectly... Now I need to take this to the customer... This system will be in a machine only... Same local database. Very similar to the link you gave me
– Gilberto Lira da Cruz
@Gilbertoliradacruz All right, you used C#. But is it ASP.NET? Windows Forms? WPF?
– Jéf Bueno
Is Windowsforms.............
– Gilberto Lira da Cruz
Possible duplicate of Install database together with C application#
– vinibrsl
@Gilbertoliradacruz - You need to install the complete database (structure + data) or only the database structure?
– José Diz