знаю как исправить
ошибка
cur.execute("INSERT INTO rep VALUES(?,?)", (ident,txt,))
sqlite3.OperationalError: table rep has 1 columns but 2 values were supplied
таблица создается вот так
cur.execute("""CREATE TABLE IF NOT EXISTS rep(
user INT
text TEXT)""")
типы не указаны
cur.execute("INSERT INTO rep VALUES(?,?)", (ident,txt)) sqlite3.OperationalError: table rep has 1 columns but 2 values were supplied все равно тоже самое
Обсуждают сегодня