Mercurial > p > roundup > code
comparison roundup/backends/rdbms_common.py @ 1417:472c21af7f69
fixed error in indexargs_url (thanks Patrick Ohly)
fixed getnode [SF#684531]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 12 Feb 2003 00:00:32 +0000 |
| parents | 6883852e9b15 |
| children | c70068162e64 |
comparison
equal
deleted
inserted
replaced
| 1415:6883852e9b15 | 1417:472c21af7f69 |
|---|---|
| 1 # $Id: rdbms_common.py,v 1.31 2003-02-08 15:31:28 kedder Exp $ | 1 # $Id: rdbms_common.py,v 1.32 2003-02-12 00:00:25 richard Exp $ |
| 2 ''' Relational database (SQL) backend common code. | 2 ''' Relational database (SQL) backend common code. |
| 3 | 3 |
| 4 Basics: | 4 Basics: |
| 5 | 5 |
| 6 - map roundup classes to relational tables | 6 - map roundup classes to relational tables |
| 25 import sys, os, time, re, errno, weakref, copy | 25 import sys, os, time, re, errno, weakref, copy |
| 26 | 26 |
| 27 # roundup modules | 27 # roundup modules |
| 28 from roundup import hyperdb, date, password, roundupdb, security | 28 from roundup import hyperdb, date, password, roundupdb, security |
| 29 from roundup.hyperdb import String, Password, Date, Interval, Link, \ | 29 from roundup.hyperdb import String, Password, Date, Interval, Link, \ |
| 30 Multilink, DatabaseError, Boolean, Number | 30 Multilink, DatabaseError, Boolean, Number, Node |
| 31 from roundup.backends import locking | 31 from roundup.backends import locking |
| 32 | 32 |
| 33 # support | 33 # support |
| 34 from blobfiles import FileStorage | 34 from blobfiles import FileStorage |
| 35 from roundup.indexer import Indexer | 35 from roundup.indexer import Indexer |
