So the problem at hand is that I need to use a local database across multiple machines. On my machine it works fine, but on others it gets a directory error due to the fact that the connection directory is as seen below:
SqlConnection sqlCon = new SqlConnection(@"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=C:\Users\Kenzie\source\repos\nicksinishtaj\moodAudio\DB\login_DB.mdf;Integrated Security=True;Connect Timeout=30");
Is there a way I can make this directory more versatile over many machines?