mirror of
https://github.com/djohnlewis/stackdump
synced 2025-01-23 07:01:41 +00:00
9 lines
199 B
Python
9 lines
199 B
Python
from sqlobject.dbconnection import registerConnection
|
|
#import mysqltypes
|
|
|
|
def builder():
|
|
import mysqlconnection
|
|
return mysqlconnection.MySQLConnection
|
|
|
|
registerConnection(['mysql'], builder)
|