sql >> Database teknologi >  >> RDS >> Mysql

Context manager for Pythons MySQLdb

Tidligere , MySQLdb-forbindelser var kontekstadministratorer. Fra og med 4th-05 1th-05 a> MySQLdb-forbindelser er dog ikke længere kontekstadministratorer, og brugere skal udtrykkeligt kalde conn.commit() eller conn.rollback(), eller skrive deres egen kontekstmanager, såsom den nedenfor.

Du kan bruge noget som dette:

import config
import MySQLdb
import MySQLdb.cursors as mc
import _mysql_exceptions
import contextlib
DictCursor = mc.DictCursor
SSCursor = mc.SSCursor
SSDictCursor = mc.SSDictCursor
Cursor = mc.Cursor

@contextlib.contextmanager
def connection(cursorclass=Cursor,
               host=config.HOST, user=config.USER,
               passwd=config.PASS, dbname=config.MYDB,
               driver=MySQLdb):
    connection = driver.connect(
            host=host, user=user, passwd=passwd, db=dbname,
            cursorclass=cursorclass)
    try:
        yield connection
    except Exception:
        connection.rollback()
        raise
    else:
        connection.commit()
    finally:
        connection.close()

@contextlib.contextmanager
def cursor(cursorclass=Cursor, host=config.HOST, user=config.USER,
           passwd=config.PASS, dbname=config.MYDB):
    with connection(cursorclass, host, user, passwd, dbname) as conn:
        cursor = conn.cursor()
        try:
            yield cursor
        finally:
            cursor.close()


with cursor(SSDictCursor) as cur:
    print(cur)
    connection = cur.connection
    print(connection)
    sql = 'select * from table'
    cur.execute(sql)
    for row in cur:
        print(row)

For at bruge det skal du placere config.py i din PYTHONPATH og definer variablerne HOST, USER, PASS, MYDB der.



  1. Sådan repareres en MySQL-database i cPanel

  2. SQLite aggregerede funktioner

  3. Udfyld manglende datoer for SQL Server-forespørgselsoutput ved hjælp af CTE

  4. Hvad er nyt i PostgreSQL 11