mirror of
https://github.com/djohnlewis/stackdump
synced 2025-01-23 07:01:41 +00:00
8 lines
191 B
Python
8 lines
191 B
Python
from sqlobject.dbconnection import registerConnection
|
|
|
|
def builder():
|
|
import sqliteconnection
|
|
return sqliteconnection.SQLiteConnection
|
|
|
|
registerConnection(['jython_sqlite'], builder)
|