jellyfin-kodi/jellyfin_kodi/objects/kodi/queries_texture.py

14 lines
239 B
Python
Raw Normal View History

from __future__ import division, absolute_import, print_function, unicode_literals
2018-09-06 08:36:32 +00:00
2019-10-03 21:34:23 +00:00
get_cache = """
SELECT cachedurl
FROM texture
WHERE url = ?
"""
2018-09-06 08:36:32 +00:00
2019-10-03 21:34:23 +00:00
delete_cache = """
DELETE FROM texture
WHERE url = ?
"""