0
votes
1answer
13 views
Handle rollbacks for data edits in a multi-user environment?
How to you typically handle roll backs for data edits in a multi-user environment? Do you identify the transaction and build a graph of any subsequent dependent transactions and th …
5
votes
5answers
124 views
How implement Rollback feature ?
I want to create a C# application in which copy some files in two diffrent folders(already contains older version files) and also run sql scripts. During whole process if any exce …
0
votes
2answers
31 views
Cannot rollback ransaction with Entity Framework
I have to do queries on uncommitted changes and I tried to use transactions, but I found that it do not work if there are exceptions.
I made a simple example to reproduce the prob …
0
votes
1answer
21 views
Rollback in Ironpython using System.Data.SqlClient
I am unable to rollback using the following code snippet and need help:
import clr
import sys
clr.AddReference('System.Data')
from System.Data.SqlClient import SqlConnection, SqlP …
0
votes
2answers
37 views
Recover from SQL batch-abort errors inside a transaction? Alternative?
I'm looking for a way to continue execution of a transaction despite errors while inserting low-priority data. It seems like real nested transaction could be a solution, but they a …
0
votes
4answers
48 views
Dealing with RollbackException in Java
Hey,
Is there any way to "replay" transaction?
I mean, sometimes I get RollbackException and rollback the transaction. Can I then "clone" the transaction and try again, or once r …
2
votes
1answer
41 views
duplicate key error does not cancel/rollback mysql transaction
When in a mysql innodb transaction, I would expect a duplicate key error to cause a rollback. It doesn't, instead it simply throws an error and continues on to the next command. On …
1
vote
4answers
118 views
How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false?
I've added a before_create filter to one of my Rails ActiveRecord models and inside that filter I'm doing some database updates.
Sometimes I return false from the filter to preve …
1
vote
3answers
102 views
Problem with Rolling back a linq2sql insert transaction in C#
Hi, i am trying to insert the contents of a CSV file into a database table using linq2SQL.
I want to be able to rollback the transaction if ANY of the inserts fail but when i try …
0
votes
1answer
32 views
Hibernate constraint violation/error rolling back
I have encountered a strange error with hibernate, most likely due to improper use of it, but I was wondering if there is any way to find the root cause of it and perhaps remedy it …
0
votes
1answer
54 views
Allowing user to rollback from db audit trail with SQLAlchemy
I'm starting to use SQLAlchemy for a new project where I was planning to implement an audit trail similar to the one proposed on this quiestions:
http://stackoverflow.com/questio …
0
votes
1answer
58 views
NullPointerException while adding data to the database from online page
Hi All,
I am getting a NullPointerException Exception while adding data from the online JSP page.
The error description is as follows:
javax.transaction.TransactionRolledbackEx …
1
vote
2answers
42 views
Version Roll Back
I am doing a concept in linux in which i want to do version rollback for an app installed in linux. Is it possible??
For eg I have an application named X with version 1.1
I get an …
0
votes
1answer
165 views
Custom Installer class , rollback method never called.
Hi guys.
I am having an installer class , Here is a snippet:
[RunInstaller(true)]
public partial class ServerWrapInstaller : Installer
{
public override void Install(IDiction …
4
votes
3answers
244 views
In mercurial, how do I apply a reverse-patch to a particular file?
Related to http://stackoverflow.com/questions/1078881/mercurial-merging-one-file-between-branches-in-one-repo , I'm trying to perform a backout operation on a single file, even tho …
