Question Data is not stored

mastercho

New member
Joined
Nov 15, 2012
Messages
1
Programming Experience
Beginner
Im working on ERP project and i should finish it next week but i have problem im using Sql Compact 3.5 database, and INSERT INTO comand but when i close form data is lost :(

and here is video:
[video=vimeo;53637451]https://vimeo.com/53637451[/video]
 
The first thing to do is to test the value returned by the method you're using to save the data. You will presumably be calling Update on a data adapter or ExecuteNonQuery on a command. Both of those return an Integer containing the number of records affected. If that number is not zero then the data is being saved. In that case, follow the first link in my signature to learn how local data files are managed.
 
Back
Top