def insert(array):
connection=sqlite3.connect('images.db')
cursor=connection.cursor()
cnt=0
while cnt != len(array):
img = array[cnt]
print(array[cnt])
cursor.execute('INSERT INTO images VALUES(?)', (img))
cnt+= 1
connection.commit()
connection.close()
मैं यह पता नहीं लगा सकता कि यह मुझे त्रुटि क्यों दे रहा है, मैं जिस वास्तविक स्ट्रिंग को सम्मिलित करने का प्रयास कर रहा हूं वह 74 वर्ण लंबा है, यह है: "/ gifs / epic-fail-photos-there-i-fixed-it-aww-man-the -tire-दबाव-low.gif "
मैंने इसे डालने से पहले str (array [cnt]) करने की कोशिश की है, लेकिन एक ही समस्या हो रही है, डेटाबेस में केवल एक कॉलम है, जो TEXT मान है।
मैं इसके लिए घंटों तक रहा हूं और मैं समझ नहीं पाया कि क्या चल रहा है।