What is MIME type "application/vnd.oasis.opendocument.database"?
A MIME type is a string that tells browsers and other tools how to handle a particular kind of file.
The MIME type application/vnd.oasis.opendocument.database identifies files that store complete database documents. These files usually come from programs like LibreOffice Base or OpenOffice Base and store data tables, queries, forms, and reports in an open, XML-based format.- Main use: Saving structured information in a database file.
- Functionality: It supports the storage of data schemas and interfaces used for query and report designs.
- Interoperability: Files using this format easily exchange with other software that supports the OpenDocument standard.
- Platform independence: As an open standard, it benefits various operating systems and software environments.
Associated file extensions
.odt, .ods, .otf, .odg, .odp, .odm, .odb, .odc, .odf, .otc, .ots, .ott, .otg, .oti, .otp, .oth, .odi, .fodg, .fodp, .fods, .fodt
Usage Examples
HTTP Header
When serving content with this MIME type, set the Content-Type header:
Content-Type: application/vnd.oasis.opendocument.database
HTML
In HTML, you can specify the MIME type in various elements:
<a href="file.dat" type="application/vnd.oasis.opendocument.database">Download file</a>
Server-side (Node.js)
Setting the Content-Type header in Node.js:
const http = require('http');
http.createServer((req, res) => {
res.setHeader('Content-Type', 'application/vnd.oasis.opendocument.database');
res.end('Content here');
}).listen(3000);
Associated file extensions
.odt, .ods, .otf, .odg, .odp, .odm, .odb, .odc, .odf, .otc, .ots, .ott, .otg, .oti, .otp, .oth, .odi, .fodg, .fodp, .fods, .fodt
FAQs
Which file extension maps to application/vnd.oasis.opendocument.database?
This MIME type is primarily associated with the .odb file extension. These files represent database documents created by applications like LibreOffice Base or OpenOffice Base.
How do I configure an Apache server to serve ODB files correctly?
To ensure browsers recognize the file type, add the following line to your .htaccess file or global httpd.conf: AddType application/vnd.oasis.opendocument.database .odb. This ensures the correct headers are sent during download.
Can web browsers display application/vnd.oasis.opendocument.database files directly?
No, standard web browsers (like Chrome, Firefox, or Edge) cannot render .odb files natively. When a user clicks a link with this MIME type, the browser will typically trigger a download prompt rather than displaying the content.
How do I add support for this MIME type in Nginx?
You should verify or add the entry in your mime.types file, usually located in /etc/nginx/. Add the line: application/vnd.oasis.opendocument.database odb;. If the file is missing, you can add it inside a types { ... } block in your nginx.conf.
Is the ODB format binary or text-based?
While the MIME type describes a database, the file itself is actually a ZIP-compressed archive containing XML text files and other assets. You can verify this by renaming a .odb file to .zip and opening it to see the internal structure.
What software is required to open this MIME type?
Users need software that supports the OpenDocument standard. The most common applications are LibreOffice Base and Apache OpenOffice Base. Some third-party database tools may also import data from this format.
Are there security concerns associated with this MIME type?
Yes, like other office document formats, .odb files can contain macros or embedded scripts. It is important to only open these files from trusted sources to prevent the execution of malicious code.
General FAQ
What is a MIME type?
A MIME (Multipurpose Internet Mail Extensions) type is a standard that indicates the nature and format of a document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838.
MIME types are important because they help browsers and servers understand how to process a file. When a browser receives a file from a server, it uses the MIME type to determine how to display or handle the content, whether it's an image to display, a PDF to open in a viewer, or a video to play.
MIME types consist of a type and a subtype, separated by a slash (e.g., text/html, image/jpeg, application/pdf). Some MIME types also include optional parameters.
How do I find the MIME type for a file?
You can check the file extension or use a file identification tool such as file --mime-type on the command line. Many programming languages also provide libraries to detect MIME types.
Why are multiple MIME types listed for one extension?
Different applications and historical conventions may use alternative MIME identifiers for the same kind of file. Showing them all helps ensure compatibility across systems.