我需要从数据库中获取带有所需参数的行。我正在使用 asycpg 与 Postgresql 一起工作这是我的代码:
row = await connection.fetchrow('SELECT * FROM ' + self.game_name +' WHERE full_url = $1', full_url)
当我启动我的脚本时,我收到了这个错误:
问题是什么?PS我正在使用python3
我需要从数据库中获取带有所需参数的行。我正在使用 asycpg 与 Postgresql 一起工作这是我的代码:
row = await connection.fetchrow('SELECT * FROM ' + self.game_name +' WHERE full_url = $1', full_url)
当我启动我的脚本时,我收到了这个错误:
问题是什么?PS我正在使用python3