Hej! Ligger det en db_test.mdf under bin\Debug\Db?Sökväg till Databas.mdf
Vill med detta veta varför detta inte funkar.
Den här funkar.
Conn = New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Test Insert \WindowsApplication1\WindowsApplication1\Db\db_test.mdf;Integrated Security=True;User Instance=True")
Men den här funkar inte får detta fel An attempt to attach an auto-named database for file C:\Test Insert \WindowsApplication1\WindowsApplication1\bin\Debug\Db\db_test.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.
Conn = New SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=" & Application.StartupPath & "\Db\db_test.mdf;Integrated Security=True;User Instance=True")
Någon som kan förklara vad som blir fel
TobbeSv: Sökväg till Databas.mdf
Ett tips är att använda en "riktig" SQL-instans, alternativt den nya LocalDB som kom i SQL Express 2012 istället för User Instance. User Instance fasas ut i och med SQL2012 och det finns goda skäl till det :)