Not trying to solve a specific problem here, but have a theoretical
question, anyhow…
Having created a simple model/controller with the scaffold generator, I
created a simple remote client based on ActiveResource.
A part of this code is illegal, but illustrates what I want to
accomplish:
require ‘active_resource’
class EnvironmentType < ActiveResource::Base
self.site = “http://xxx:3001”
end
Assumption is that that the names has not changed at this point…
Basically, my question is if there is some (easy) way to initiate a
transaction from this remote client with the possibility of a rollback
after
a set of saves has been done.
OK, so maybe the best/shortest answer is that this is bad design to
remotely
initiate a transaction like this, but I’m gonna ask anyway :o)
Well, lets say the first save is OK, but the second save results in a
validation error.
Then the second save is rolled back, obviously, but then you want the
whole
thing to roll back.
I’m talking about an actual DB transaction rollback.
I realise that the “illegal code” example that I included shows only a
transaction connected to the one model.
In general however, I’d like to start a block, which also starts a
transaction in the DB, do some stuff on one or more model objects, save
them
to the DB, but if some condition should occur, be able to rollback all
DB
changes in the block.
I guess this is not easy to do in a general framework, since perhaps not
all
DBMSs has support for transactions.
(I work with Sybase ASE which does have this capability.)
Well, lets say the first save is OK, but the second save results in a
validation error.
Then the second save is rolled back, obviously, but then you want the
whole
thing to roll back.
I’m talking about an actual DB transaction rollback.
I realise that the “illegal code” example that I included shows only a
transaction connected to the one model.
In general however, I’d like to start a block, which also starts a
transaction in the DB, do some stuff on one or more model objects, save
them
to the DB, but if some condition should occur, be able to rollback all
DB
changes in the block.
I guess this is not easy to do in a general framework, since perhaps not
all
DBMSs has support for transactions.
(I work with Sybase ASE which does have this capability.)
Well, lets say the first save is OK, but the second save results in a
validation error.
Then the second save is rolled back, obviously, but then you want the
whole
thing to roll back.
I’m talking about an actual DB transaction rollback.
…
Well, lets say the first save is OK, but the second save results in a
validation error.
Then the second save is rolled back, obviously, but then you want the
whole
thing to roll back.
I’m talking about an actual DB transaction rollback.
…