Mercurial > p > roundup > code
comparison roundup/backends/rdbms_common.py @ 1418:e6b2d51e5b95 maint-0.5
backport fix from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 12 Feb 2003 00:03:38 +0000 |
| parents | 3a853f1c20b5 |
| children | 31cc79f966ac |
comparison
equal
deleted
inserted
replaced
| 1416:293653d08292 | 1418:e6b2d51e5b95 |
|---|---|
| 1 # $Id: rdbms_common.py,v 1.27.2.2 2003-02-06 05:44:49 richard Exp $ | 1 # $Id: rdbms_common.py,v 1.27.2.3 2003-02-12 00:03:38 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 |
