sql >> Database teknologi >  >> RDS >> PostgreSQL

psycopg2 mapping Python:liste over dicts til Postgres:array af sammensat type for en INSERT-sætning

Udvid din indsats bare en lille smule, hvad med:

quote_1 = ("monkeys rock", "False")
quote_2 = ("donkeys rock",  "True")
q_list = [ quote_1, quote_2]
print cur.mogrify("insert into posts VALUES(%s,%s::quotes[])", 
                  ("animals are good", q_list))
#
#                 added explicit cast to quotes[]->^^^^^^^^

Forklaring :

Hvis du kører:

insert into posts 
VALUES('animals are good', ARRAY[
    ('monkeys rock', 'false'),
    ('donkeys rock', 'true')
]);

direkte i psql du får:

regress=# insert into posts 
regress-# VALUES('animals are good',ARRAY[
regress-#             ('monkeys rock', 'false'),
regress-#             ('donkeys rock', 'true')
regress-#  ]);
ERROR:  column "q" is of type quotes[] but expression is of type record[]
LINE 1: insert into posts VALUES('animals are good',ARRAY[('monkeys ...
                                                    ^
HINT:  You will need to rewrite or cast the expression.

Sikkert nok, fortæller Pg, at dit anonyme array er af typen quotes[] gør tricket:

regress=# insert into posts 
regress-# VALUES('animals are good',ARRAY[
regress-#           ('monkeys rock', 'false'),
regress-#           ('donkeys rock', 'true')
regress-# ]::quotes[]);
INSERT 0 1

regress=# select * from posts;
       body       |                           q                            
------------------+--------------------------------------------------------
 animals are good | {"(\"monkeys rock\",false)","(\"donkeys rock\",true)"}
(1 row)



  1. MySQL med specialtegn i json-stien

  2. Hvordan kan jeg gemme adgangskoden sikkert i MySQL og autentificere til eksterne tjenester

  3. Sådan skriver du joinforespørgsel i Volusion API

  4. Korrekt indsættelse af tabelnavn