CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 2005
    Posts
    159

    Question Data Storage advice required (Was: What is the best implementation for this problem?)

    Hi all,

    I'm designing an application in which i download stock data as a *.csv file, one file for each stock, which contains 10 columns with floats.

    I'm wondering what way is the best way to store these data.

    Obviously I do not want to keep x files for x stocks since x might become quite large over time.

    I have been reading about xml but that seems like an awefull lot of overhead compared to csv.

    Since, in a later stadium, I would like to make it open source I would also like to do this in a correct way.

    How would you guys solve this? Please give a little motivation so everybody can learn out of the answers.

    Thanks a lot guru's

    kind regards

    Jef Patat

  2. #2
    Join Date
    Oct 2003
    Location
    .NET2.0 / VS2005 Developer
    Posts
    7,104

    Re: What is the best implementation for this problem?

    you have data and youre wondering where to base it..
    "it's a fax from your dog, Mr Dansworth. It looks like your cat" - Gary Larson...DW1: Data Walkthroughs 1.1...DW2: Data Walkthroughs 2.0...DDS: The DataSet Designer Surface...ANO: ADO.NET2 Orientation...DAN: Deeper ADO.NET...DNU...PQ

  3. #3
    Join Date
    Aug 2003
    Location
    London
    Posts
    515

    Re: Data Storage advice required (Was: What is the best implementation for this problem?)

    Yeah, a database is the ideal solution for what you are asking....a well designed db will be able to handle any number of files.

    If you want your program to become opensource in the end, then maybe think about using an opensource db engine (mySql, Firebird ) to store your info.
    If it helped, then please rate the post by clicking "Rate this post"!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured