You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the Turso DB straight from my Flask python backend, i've faced an issue when trying to use a INSERT OR IGNORE sqlite clause.
The code is:
for track in tracks_info:
# Insert or ignore album information
conn.execute('''
INSERT OR IGNORE INTO apple_albums (apple_album_id, title, release_year, artist_id, picture_url)
VALUES (?, ?, ?, ?, ?)
''', (track['apple_album_id'], track['album_title'], track['release_year'], track['apple_artist_id'], track['image_url']))
This results in : pyo3_runtime.PanicException: not yet implemented
The text was updated successfully, but these errors were encountered:
Using the Turso DB straight from my Flask python backend, i've faced an issue when trying to use a INSERT OR IGNORE sqlite clause.
The code is:
for track in tracks_info:
# Insert or ignore album information
conn.execute('''
INSERT OR IGNORE INTO apple_albums (apple_album_id, title, release_year, artist_id, picture_url)
VALUES (?, ?, ?, ?, ?)
''', (track['apple_album_id'], track['album_title'], track['release_year'], track['apple_artist_id'], track['image_url']))
This results in : pyo3_runtime.PanicException: not yet implemented
The text was updated successfully, but these errors were encountered: