DatabaseFileType class
DatabaseFileType class
Defines database documents. Includes the following file types:
DatabaseFileType.Nsf
DatabaseFileType.Log
DatabaseFileType.Sql
Inheritance: DatabaseFileType
→
FileType
→
Enumeration
The DatabaseFileType type exposes the following members:
Constructors
Constructor | Description |
---|---|
init | Serialization constructor |
Properties
Property | Description |
---|---|
file_format | The file format |
extension | The file extension |
family | The file family |
description | File type description |
UNKNOWN | Unknown file type |
NSF | A file with .nsf (Notes Storage Facility) extension is a database file format used by the IBM Notes software, which was previously known as Lotus Notes. It defines the schema to store different kind of objects such like emails, appointments, documents, forms and views.
Learn more about this file format here. |
LOG | A file with .log extension contains the list of plain text with timestamp. Usually, certain activity detail is logged by the softwares or operating systems to help the developers or users to track what was happening at a certain time period.
Learn more about this file format here. |
SQL | A file with .sql extension is a Structured Query Language (SQL) file that contains code to work with relational databases. It is used to write SQL statements for CRUD (Create, Read, Update, and Delete) operations on databases.
Learn more about this file format here. |
Methods
Method | Description |
---|---|
equals | Implements Enumeration.equals |
compare_to | Compares current object to other. |
from_filename | Returns FileType for specified fileName |
from_extension | Gets FileType for provided fileExtension |
from_stream | Returns FileType for provided document stream |
See Also
- module
groupdocs.conversion.filetypes
- class
DatabaseFileType
- class
Enumeration
- class
FileType