...

Source file src/github.com/gabriel-vasile/mimetype/internal/magic/database.go

Documentation: github.com/gabriel-vasile/mimetype/internal/magic

     1  package magic
     2  
     3  var (
     4  	// Sqlite matches an SQLite database file.
     5  	Sqlite = prefix([]byte{
     6  		0x53, 0x51, 0x4c, 0x69, 0x74, 0x65, 0x20, 0x66,
     7  		0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x33, 0x00,
     8  	})
     9  	// MsAccessAce matches Microsoft Access dababase file.
    10  	MsAccessAce = offset([]byte("Standard ACE DB"), 4)
    11  	// MsAccessMdb matches legacy Microsoft Access database file (JET, 2003 and earlier).
    12  	MsAccessMdb = offset([]byte("Standard Jet DB"), 4)
    13  )
    14  

View as plain text