1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-kodi.git synced 2025-01-17 21:46:11 +00:00
jellyfin-kodi/resources/lib/objects/kodi/queries_texture.py

12 lines
202 B
Python
Raw Normal View History

2018-09-06 08:36:32 +00:00
get_cache = """ SELECT cachedurl
FROM texture
WHERE url = ?
"""
delete_cache = """ DELETE FROM texture
WHERE url = ?
"""