DELETE FROM statement not working

Поиск
Список
Период
Сортировка
От Shaan Repswal
Тема DELETE FROM statement not working
Дата
Msg-id CALa+hESZQ9=v0hF3rsFhuUyDNQX-5-Y5iyC091B9mWhVDn-wCQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: DELETE FROM statement not working  (Christophe Pettus <xof@thebuild.com>)
Re: DELETE FROM statement not working  (Dorian Hoxha <dorian.hoxha@gmail.com>)
Re: DELETE FROM statement not working  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список psycopg
I was trying to delete a record I got inside my database and so I first typed all of this inside the interpreter... It was followed by the error mentioned at the bottom. I can't figure this out. Can anyone help me out?

>>> conn = psycopg2.connect("dbname=prototypedb user=postgres password=superman123")
>>> cur = conn.cursor()
>>> cur.execute("DELETE FROM inventory WHERE name = \"Polyester Direct High Gloss\";")
Traceback (most recent call last):
  File "<pyshell#84>", line 1, in <module>
    cur.execute("DELETE FROM inventory WHERE name = \"Polyester Direct High Gloss\";")
psycopg2.ProgrammingError: column "Polyester Direct High Gloss" does not exist
LINE 1: DELETE FROM inventory WHERE name = "Polyester Direct High Gl...
                                           ^

>>> name = "DELETE FROM inventory WHERE name = \"Polyester Direct High Gloss\";"
>>> cur.execute(name)
Traceback (most recent call last):
  File "<pyshell#86>", line 1, in <module>
    cur.execute(name)
psycopg2.InternalError: current transaction is aborted, commands ignored until end of transaction block

В списке psycopg по дате отправления:

Предыдущее
От: Jonathan Rogers
Дата:
Сообщение: Re: Encountered an error
Следующее
От: Christophe Pettus
Дата:
Сообщение: Re: DELETE FROM statement not working