I think you can store files in Access as an "OLE Object" data type. The better database approach would be to store the data as a BLOB (binary large object) in an SQL database like MySQL or SQL Server. You would then have other columns like: vendor, date, description, etc. You'd then use a web server and scripting language to share the data. The HTML pages would be dynamically generated from the database - you create a frontend pages to enter and query the data. There are probably free open source projects to this end.
My description is more relevant as a web based approach that would allow multiple users to share data. Your best bet may be to find a local application that does what you're looking for. I imagine a program like Google's Picasa (manages images) for pdfs. A Google search on "PDF organizer" or "PDF manager" should help you there.
edit: There was a free utility that PC Magazine put out several years ago. It integrated into Windows and allowed you to add comments on files or directories. This index was stored in the registry and very quickly searchable. Would a similar approach be useful for you? Why are you interested in a database?
For example, storing all of your files in a certain path with a consistent naming convention could work fine. Just use something like Google Desktop to index the files so that you can quickly find any. If you need more metadata or want to give multiple people access, then the SQL database driven web approach is probably the best.
QUOTE(Crossbow @ Nov 13 2007, 12:46 AM) [snapback]61579[/snapback]
I am looking for a means of building an offline repository for PDF files. I've got hundreds of PDFs from many PLC manufacturers, and right now, my best way to organize them is by building HMTL pages and FrontPage webs.
I'd like to build a database, such as in MS Access, which would store a record for each manual, and I should be able to attach the PDF to the record so it becomes part of the database.
I did a similar project years ago when working for a PLC vendor, using Lotus Notes. I created a database which was replicated to all Notes servers in the company. Each record showed the manual number, manual title, and had a field for attaching the original file.
I can't seem to find anything to do this offline, without the Notes server. Any ideas?