EvilZone

Programming and Scripting => .NET Framework => Topic started by: Code.Illusionist on April 30, 2014, 12:20:49 PM

Title: Saving Data
Post by: Code.Illusionist on April 30, 2014, 12:20:49 PM
I am trying to make one simple app for my own purposes.  It's very simple idea, user enter Name of book, author of book, number of pages, and date he added book. All string type data. On the right side of the app, there is listbox that will show books that are already stored AND, new added books. When user click on the item from list, in right text box there will be displayed all this data (Name, Author, Number of pages, Data). But, problem is how to save data, load it every time and add new data. I don't have experince working with databases. This is image of app GUI:
(http://www.dodaj.rs/f/1j/2o/3mYDHyqk/2014-04-30121716.jpg)
Title: Re: Saving Data
Post by: Kulverstukas on April 30, 2014, 12:41:22 PM
You didn't mention which language is it. Also for this I'd recommend SQLite. Also There should be an option to scan a folder and fill that database automatically.
Title: Re: Saving Data
Post by: Code.Illusionist on April 30, 2014, 12:50:42 PM
Oh sorry, totally forgot. I use C# . =)
Title: Re: Saving Data
Post by: Kulverstukas on April 30, 2014, 02:02:06 PM
https://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki
http://code.google.com/p/csharp-sqlite/
Title: Re: Saving Data
Post by: Code.Illusionist on May 01, 2014, 01:14:27 PM
Thank you kind sir. x)