Найти - Пользователи
Полная версия: Некорректно считывает значение в таблице
Начало » Базы данных » Некорректно считывает значение в таблице
1
morti-gg
Вместо числа 30 выводит (30,) и никак не получается это преобразовать в число. Как из таблицы вывести 30?

 cursor.execute('SELECT time FROM arizonaminerbot WHERE vk_id = ?', [int(ans.from_id)])
    db.commit()
    await ans.answer(str(cursor.fetchone()))
    print(cursor.fetchone())
    db.close()

Добавление элементов:
 cache = (
        int(ans.from_id), int(value), int(time)
        )
cursor.executemany('INSERT INTO arizonaminerbot(vk_id, BTC, time) VALUES(?, ?, ?)', [cache])

Где int(value) - число 30
py.user.next
morti-gg
Вместо числа 30 выводит (30,)
  
record = cursor.fetchone()
if record:
    number = record[0]
else:
    number = None
print(number)
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB