Hi All,
i am creating a Desktop application using Microsoft Visual Studio .NET 2008..
i am using .sdf file as my database...
my problem is that when i am making changes to my records (add new, deleted, updated) then the changes reflects only till my application is running when i restart the application then i am not getting my changes...
I am using the default connection string
string conString = Properties.Settings.Default.DataConnectionString;
SqlCeConnection con = new SqlCeConnection(conString);
con.Open();
the value given by the visual studio for this database is
Data Source=|DataDirectory|\Data.sdf
i dont know what mistake i am doing ,, but all the queries are executing....
Thanks
vince