EDITED FOR CLARITY: I am writing a winforms application for desktop that relies on a database to fill it's information. I would like to include the files that hold that data in the deployed application so that it can be installed on a user's computer so that they can use the data locally instead of across the internet.
ORIGINAL POST: I am writing a Desktop application that makes use of SQL Databases. I want to be able to package it up with the database files and have it work when someone installs it. Is there some way to do this with VS17? Or Should I just work with an XLS file from Excel?
I'm using Visual Studio 2017. I have done a google search that responded with installing SQL this and that but nothing relating to VS17. My stack overflow search pulled up one result that I thought was relevant, that suggested installing sqlite without any other elaboration.
When I installed and ran on my computer, it worked, but I believe that is because I have the database service running on my machine since this is where I code and test the application through VS. I had an associate run it and it gives them an error:
Cannot find directory or file
EDIT: The replied i am getting seems to be all about installing a SQL Server. I am looking to make sure the project deploys the Database files, not the server.