def users_exist(self, user_id):
with self.connection:
result = self.cursor.execute("SELECT * FROM 'users' WHERE 'user_id = ?'", (user_id, )).fetchall()
return bool(len(result))
这是错误的文本:提供的绑定数量不正确。当前语句使用 0,并且提供了 1。我试图自己修复它,但它没有用