Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8739035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:51:23+00:00 2026-06-13T10:51:23+00:00

I’m creating an application that will search the documentation of a function within a

  • 0

I’m creating an application that will search the documentation of a function within a language and return the results. Currently, the documentation consists of a single page which links to pages dedicated to the selected function. I have prepared a way for retrieving the data using HTML Agility Pack. I also have an algorithm to search through the keywords. I just need a way to store the data. Ease of use is more important to me than efficiency, in this case, because the application only needs to store about 75 records.

This is a list of potential solutions I have come up with:

  1. System.Data.SQLite
  2. CSV
  3. XML

I think these are the solutions which most people would suggest immediately. So far, I have tried Solution 1 and it seems to be more work than necessary for a relatively small number of records.

For this project, what storage method would you suggest?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T10:51:24+00:00Added an answer on June 13, 2026 at 10:51 am

    If the dataset is relatively small and speed is not a concern, I would go with XML. If you design your class right and it is serializable, you can just use the build in Xml serialization.

    [Serializable]
    public class MyDataStorage
    {
        // some members
    
        public void Store( String filename )
        {
            XmlSerializer serializer = new XmlSerializer( typeof( MyDataStorage ) );
            using ( FileStream stream = File.OpenWrite( filename ) )
            {
                serializer.Serialize( stream, this );
            }
        }
    
        public static MyDataStorage Load(String filename )
        {
            XmlSerializer serializer = new XmlSerializer( typeof( MyDataStorage ) );
            object deserialized;
            using ( FileStream stream = File.OpenRead( filename ) )
            {
                deserialized = serializer.Deserialize( stream );
            }
    
            return (MyDataStorage) deserialized;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a function that will clean a strings' special characters. I do NOT
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a small JavaScript validation script that validates inputs based on Regex. I
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.