Store Thousands of Letters on Computer: Best Ways

  • Thread starter Thread starter John O' Meara
  • Start date Start date
  • Tags Tags
    Base Data
AI Thread Summary
To store thousands of letters for a friend, the best approach is to first determine the current format of the letters, which are currently on paper and will need to be scanned. The method of access is crucial; the friend prefers to file and access the letters by date. Given the user's limited programming skills, using a database program like Access is recommended over writing a custom solution in C or C++. If the user is willing to learn, developing a front end for a database engine like MySQL could be a viable option. Direct scanning into Access is not typically possible, so letters should be scanned into a digital format before being organized in the database.
John O' Meara
Messages
325
Reaction score
0
I wish to store thousands of letters onto a computer for a friend. What is the best way to do this? Use Access, or write a program in C/C++ to store and fetch the letters onto CDs. Any suggestions gratefully received, as I have no idea how to get started on this.Thank you very much.
 
Technology news on Phys.org
What format are the letters in now? Are they still on paper, or are they in Word documents, or text files, or PDF files, or images (TIFF, JPEG etc.) from a scanner?

How does your friend want to be able to access them? Search by a fixed number of data items such as sender, addressee, subject, or assigned keywords? Full-text search of the messages?

What are your current programming skills? If you're not a good programmer already, I think you should base your solution on an existing database progam such as Access. If you have programming experience, you could consider writing a "front end" for a database engine such as MySQL. Writing something like this completely from scratch in C or C++ or whatever is for masochists only, IMHO.
 
They are in paper ready to scan into the computer. Can I scan them into Access directly. I have to check with him how he wants them to be accessed. I'm not a good programmer but I can learn SQL to write a "front end" for accessing the database. Thanks for the advice.
 
He wants to access them and file them by date only. He wants to have them as like an archive. Thanks.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top