On 6/17/15 12:00 PM, Adrian wrote:
I'm trying to store old versions of (some of) the data in one of my
tables.
To do so, I'm thinking about models like this (not including anything
not relevant to the case):
class EventNote(db.Model):
id = db.Column(db.Integer, primary_key=True)
late
On 6/17/15 12:12 PM, david.ceresu...@gmail.com wrote:
Hi all,
I was giving SQLAlchemy 1.0 series a try but I have found some
problems along
the way. There are some queries that in the 0.9.9 version used to
work, but
they do not work as expected anymore. An example of one of those is:
|
fee
Hi all,
I was giving SQLAlchemy 1.0 series a try but I have found some problems
along
the way. There are some queries that in the 0.9.9 version used to work, but
they do not work as expected anymore. An example of one of those is:
feeds = DBSession.query(Feed, Client, ClientPro).outerjoin(
C
I'm trying to store old versions of (some of) the data in one of my tables.
To do so, I'm thinking about models like this (not including anything not
relevant to the case):
class EventNote(db.Model):
id = db.Column(db.Integer, primary_key=True)
latest_revision = db.relationship(
'
On 6/17/15 4:05 AM, Soeren Medard wrote:
Hi,
I have had an issue with bulk operations arising from the following
use case:
I was looping an iterator of mappings, which are either already in the
DB (inserts) or not (updates). As I did not want to loop over it twice
and wanted to do only on tr
Hi,
I have had an issue with bulk operations arising from the following use
case:
I was looping an iterator of mappings, which are either already in the DB
(inserts) or not (updates). As I did not want to loop over it twice and
wanted to do only on transaction, I used greenlets do split the iter