Skip to content

(Unsupported, legacy, deprecated) A DB-API compatible wrapper for umysql

License

Notifications You must be signed in to change notification settings

NextThought/umysqldb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

umysqldb

Warning

This wrapper is no longer recommended or supported. See zodb/relstorage#264

A MySQLdb compatible wrapper around ultramysql.

Usage

>>> import umysqldb
>>> umysqldb.install_as_MySQLdb()
>>> import MySQLdb
>>> MySQLdb is umysqldb
True
>>> conn = MySQLdb.connect(host='localhost')
>>> curs = conn.cursor()
>>> curs.execute("select 1")
1
>>> curs.fetchone()
(1L,)
>>> conn.close()

Build Status

About

(Unsupported, legacy, deprecated) A DB-API compatible wrapper for umysql

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%