I made my first program and now I need to run it on the client. How do I do?

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-bit. I thought of installing the same bank on the client, however 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";
    
asked by anonymous 13.04.2017 / 20:08

1 answer

-1

Gilberto, the database itself (that is, the data) is independent of architecture (32 or 64 bits). But you will have to first install SQL Server Express 2016 32-bit on the client computer.

On your computer, you fully back up the database and then restore that backup on the client computer.

Next, change the connection string, considering the characteristics of the new server.

24.04.2017 / 22:39