|
Last change
on this file was
1288,
checked in by broder, 17 years ago
|
|
sipb-xen-database-common -> invirt-database
sipb-xen-database-server -> invirt-database-server
|
|
File size:
278 bytes
|
| Line | |
|---|
| 1 | from invirt.config import structs as config |
|---|
| 2 | from models import * |
|---|
| 3 | import sqlalchemy |
|---|
| 4 | |
|---|
| 5 | def connect(uri = config.db.uri): |
|---|
| 6 | """ Connect to a given database URI""" |
|---|
| 7 | engine = sqlalchemy.create_engine(uri, pool_timeout=5) |
|---|
| 8 | meta.bind = engine |
|---|
| 9 | session.configure(bind=engine) |
|---|
Note: See
TracBrowser
for help on using the repository browser.