Databases/Textures: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
(Create Page)
 
(Updated for v18)
Line 10: Line 10:
The current stable release of {{kodi}} is using the following version of the database:
The current stable release of {{kodi}} is using the following version of the database:


;Kodi v17 - Textures13.db
;Kodi v18 - Textures13.db




Line 98: Line 98:




{{updated|17}}
{{updated|18}}
[[Category:PVR]]
[[Category:PVR]]
[[Category:Index]]
[[Category:Index]]

Revision as of 05:31, 23 April 2019

Kodi Databases

See also:

Home icon grey.png   ▶ Development
▶ Userdata
▶ Databases ▶ Textures



Textures#.db

The Textures#.db database file contains the information for all Kodi Artwork

The current stable release of Kodi is using the following version of the database:

Kodi v18 - Textures13.db


Warning: The databases are critical components of Kodi. We strongly urge that you do not interfere with them, unless you have knowledge and experience with database designs.


path

This table holds information on the type and location of Artwork

Column Name Data Type Description
id integer Primary Key
url text Path to folder containing playable file
type text Artwork type (poster, fanart etc)
texture text Path to original artwork


sizes

This table holds information regarding the size and usage of the Artwork

Column Name Data Type Description
idtexture integer Primary Key
size integer
width integer Width px
height integer Height px
usecount integer
lastusetime text


texture

This table links the cached file to the correct title and stores file hash information

Column Name Data Type Description
id integer Primary Key
url text Path to original artwork
cachedurl text Name of cached file
imagehash text Hash of image
lasthashcheck text Last time artwork was checked for changes


version

Database details

Column Name Data Type Description
idVersion integer Database version
iCompressCount integer


Return to top