Skip to main content

A simple wrapper over mysqldb

Project description

For use with the mysqldb module for python

Usage

import mysqldbhelper
db = mysqldbhelper.DatabaseConnection('hostname',
                    user='username',
                    passwd='password',
                    db='databasename')

For single transactions

db.get_one('select book_name from book where isbn = %s', ('SOMEISBN',))

‘limit 1’ is automatically added

db.get_all('select book_name from book where author = %s', ('Richard Dawkins',))
db.put('''
insert into book
(book_name, book_author)
values
(%s, %s)''', ('Phantoms in the brain', 'V.S. Ramachandran')

put can be used for insert, update and delete queries

db.put('''delete from book
where
book_author = %s''' ('Deepak Chopra',))

For multiple transcations that need to be run atomically

try:
    db.start()
    db.get(...)
    db.put(...)
    ...
    db.save()
except Exception, e:
    db.rollback()
    raise

Used at Comparnion.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mysqldbhelper-1.0.2.tar.gz (2.2 kB view details)

Uploaded Source

File details

Details for the file mysqldbhelper-1.0.2.tar.gz.

File metadata

File hashes

Hashes for mysqldbhelper-1.0.2.tar.gz
Algorithm Hash digest
SHA256 2e82653eeaf8039f1271a589ab9151ad83eee8f86cdafb5eb2a13df07f18c354
MD5 0824ca30c707dfe7f02e3dd11360f7ea
BLAKE2b-256 aec7be946000109c01b382c2886e86ec9715142a840f09bd0a6a58f6136b1176

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page