diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-11 03:05:03 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-11 03:05:03 -0500 |
commit | 9c0755640c5f1d45596ff7234d2d42f1c92d09e0 (patch) | |
tree | d742ffa4269a28d9dc7e9017876af502a13a02fd /lib/sqlalchemy/engine/base.py | |
parent | 66e5de30f2e01593182058091075780b41411a78 (diff) | |
download | sqlalchemy-9c0755640c5f1d45596ff7234d2d42f1c92d09e0.tar.gz |
- clean up the batch insert thing
- add a test for batch inserts
- don't need elaborate _inserted_primary_key thing
- take some cruft out of ExecutionContext, ResultProxy,
EC members can be non-underscored, have mapper just call the
EC members for now.
- simplify "connection_callable", no need for a "flush_opts"
dictionary since this point of expansion is not needed
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
-rw-r--r-- | lib/sqlalchemy/engine/base.py | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 4a00ebda2..d58460fb8 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -2448,8 +2448,16 @@ class ResultProxy(object): did not explicitly specify returning(). """ + + if not self.context.isinsert: + raise exc.InvalidRequestError( + "Statement is not an insert() expression construct.") + elif self.context._is_explicit_returning: + raise exc.InvalidRequestError( + "Can't call inserted_primary_key when returning() " + "is used.") - return self.context._inserted_primary_key + return self.context.inserted_primary_key @util.deprecated("0.6", "Use :attr:`.ResultProxy.inserted_primary_key`") def last_inserted_ids(self): @@ -2458,22 +2466,24 @@ class ResultProxy(object): return self.inserted_primary_key def last_updated_params(self): - """Return ``last_updated_params()`` from the underlying - ExecutionContext. - - See ExecutionContext for details. - """ + """Return the collection of updated parameters from this + execution. - return self.context.last_updated_params + """ + if self.context.executemany: + return self.context.compiled_parameters + else: + return self.context.compiled_parameters[0] def last_inserted_params(self): - """Return ``last_inserted_params()`` from the underlying - ExecutionContext. - - See ExecutionContext for details. + """Return the collection of inserted parameters from this + execution. + """ - - return self.context.last_inserted_params + if self.context.executemany: + return self.context.compiled_parameters + else: + return self.context.compiled_parameters[0] def lastrow_has_defaults(self): """Return ``lastrow_has_defaults()`` from the underlying |