Click here to Skip to main content
15,905,912 members
Home / Discussions / C#
   

C#

 
AnswerRe: Data in XmlFiles or in Database Pin
Dave Kreskowiak26-Apr-13 7:52
mveDave Kreskowiak26-Apr-13 7:52 
GeneralRe: Data in XmlFiles or in Database Pin
Frygreen26-Apr-13 8:08
Frygreen26-Apr-13 8:08 
GeneralRe: Data in XmlFiles or in Database Pin
Dave Kreskowiak26-Apr-13 8:22
mveDave Kreskowiak26-Apr-13 8:22 
AnswerRe: Data in XmlFiles or in Database Pin
Jasmine250126-Apr-13 11:31
Jasmine250126-Apr-13 11:31 
GeneralRe: Data in XmlFiles or in Database Pin
jschell27-Apr-13 11:21
jschell27-Apr-13 11:21 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine250128-Apr-13 6:26
Jasmine250128-Apr-13 6:26 
GeneralRe: Data in XmlFiles or in Database Pin
jschell29-Apr-13 7:45
jschell29-Apr-13 7:45 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine250129-Apr-13 13:13
Jasmine250129-Apr-13 13:13 
GeneralRe: Data in XmlFiles or in Database Pin
jschell30-Apr-13 9:44
jschell30-Apr-13 9:44 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine250130-Apr-13 11:30
Jasmine250130-Apr-13 11:30 
GeneralRe: Data in XmlFiles or in Database Pin
jschell1-May-13 8:22
jschell1-May-13 8:22 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine25011-May-13 9:03
Jasmine25011-May-13 9:03 
GeneralRe: Data in XmlFiles or in Database Pin
jschell2-May-13 7:57
jschell2-May-13 7:57 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine25012-May-13 9:02
Jasmine25012-May-13 9:02 
GeneralRe: Data in XmlFiles or in Database Pin
jschell3-May-13 11:02
jschell3-May-13 11:02 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine25013-May-13 11:40
Jasmine25013-May-13 11:40 
GeneralRe: Data in XmlFiles or in Database Pin
jschell6-May-13 8:11
jschell6-May-13 8:11 
GeneralRe: Data in XmlFiles or in Database Pin
Jasmine25016-May-13 8:26
Jasmine25016-May-13 8:26 
GeneralRe: Data in XmlFiles or in Database Pin
jschell7-May-13 9:27
jschell7-May-13 9:27 
AnswerRe: Data in XmlFiles or in Database Pin
RedDk26-Apr-13 11:54
RedDk26-Apr-13 11:54 
GeneralRe: Data in XmlFiles or in Database Pin
Eddy Vluggen26-Apr-13 22:36
professionalEddy Vluggen26-Apr-13 22:36 
AnswerRe: Data in XmlFiles or in Database Pin
Eddy Vluggen26-Apr-13 23:32
professionalEddy Vluggen26-Apr-13 23:32 
Frygreen wrote:
One advantage of xml is, that files can be easily moved around via simple copy/paste. Do I loose this feature with a database?

Depends what database-system you'll be choosing. For local data, I prefer SQLite (over SqlCE) as it's available on both Windows and Linux. One can XCopy such a file-database if no-one is using it at that particular moment.

SqlExpress or MySQL would be recommended if your user wanted to share his/her data.

A huge advantage of using a database over a custom structure is the fact that a database has been built for the explicit reason of storing data, and has been optimized over years to do so. It'd be faster, more secure, and it'd cut the dependency to the custom structure (iow, it'd be "standardizing" on Sql).
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]

GeneralRe: Data in XmlFiles or in Database Pin
Frygreen27-Apr-13 0:31
Frygreen27-Apr-13 0:31 
AnswerRe: Data in XmlFiles or in Database Pin
PIEBALDconsult27-Apr-13 12:31
mvePIEBALDconsult27-Apr-13 12:31 
QuestionRunning a loop, try to get both [i] value (todayvalue), and [i - 1] value (yesterdays value) Pin
lordoftrades25-Apr-13 0:47
lordoftrades25-Apr-13 0:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.