I have an app that is to store data into a SQL Express database. The connection works fine. I can store data from my pc. The database is set up for Windows Authentication. When the app runs on another workstation, the data is not save. Here is the connection string:
I do not get any errors about the conneciton. Is there something I'm missing?
What doesn't kill you makes you stronger.
Code:
ConnectionString = "Provider=SQLNCLI;" & _
"Integrated Security=SSPI;" & _
"Persist Security Info=False;" & _
"Data Source=Serv\SQLEXPRESS;" & _
"Packet Size=8192;" & _
"Initial Catalog=Database;"
What doesn't kill you makes you stronger.