Re: Versioning with SQLRelatedJoin?
Oleg Broytman <[email protected]> Tue, 9 Jun 2015 14:37:25 +0200
| Newsgroups | gmane.comp.python.sqlobject |
|---|---|
| Message-ID | <[email protected]> |
Hello! On Mon, Jun 08, 2015 at 04:46:08PM -0700, aseiden <[email protected]> wrote: > Is it possible to combine SQLObject Versioning with a SQLRelatedJoin? I don't believe it's possible, at least possible using simple approach. The problem is that versioned data is copied to a separate versioning table while joins retain pointers between main tables. I think your best bet is to implement your own versioning in the main table (Cart, in your case). Oleg. -- Oleg Broytman http://phdru.name/ [email protected] Programmers don't die, they just GOSUB without RETURN. ------------------------------------------------------------------------------