2019-02-24から1日間の記事一覧

MySQL Connector の with 文

Python では、PostgreSQL の接続、psycopg2 の connect は、 with 文を書くことができますが、 import psycopg2 with psycopg2.connect("host=localhost port=5432 dbname=urandb user=postgres password=aswe344f") as con: with con.cursor() as cur: # TO…