0
votes
0answers
185 views
Transaction with MonetDB and JDBC driver
I'm trying to perform transaction-like behavior with MonetDB and its JDBC driver.
I tried first to set autocommit to false for the connection, I then get the following error on co …
0
votes
2answers
25 views
Passing generated id from table 1 (primary key) to table 2 (foreign key)??
Hi
I am using (evaluating :)) Subsonic ActiveRecord mode for accessing sqLite. Need transaction to work. Regular stuff... Of ocurse!
Following snippet explains the desired logic. …
0
votes
1answer
40 views
SQLite Transaction not committing
For an application we are developing we need to read n rows from a table and then selectively update those rows based on domain specific criteria. During this operation all other …
0
votes
0answers
7 views
Subsonic transaction with SqLite without external dependency?
Hi
I am developing C# WPF application using Subssonic libraries. This application will be eventually used by users in homes, schools etc. (Not in Enterprises)
I use ActiveRecord t …
0
votes
1answer
16 views
Flush NHibernate whilst still allowing transaction rollback
I am trying to use NHibernate with some legacy database transaction. On occaisson this means that I need to manually flush NHibernate data to the database.
A problem occurs when t …
3
votes
5answers
1k views
TransactionScope Error against Sql Server 2000 - The partner transaction manager has disabled its support for remote/network transactions.
I am trying to set up a simple transaction for my Linq-to-Sql actions against my Sql 2000 database. Using TransactionScope it looks like this:
using (TransactionScope transaction …
1
vote
1answer
8 views
diff between application transacation scope and sql server transaction
Hi,
I want to know
1. diff between application transacation scope and sql server transaction.
2. where to use application transaction
3. where to use sql server transaction
Reg …
0
votes
2answers
29 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 …
3
votes
5answers
530 views
mysql insert race condition
How do you stop race conditions in MySQL? the problem at hand is caused by a simple algorithm:
select a row from table
if it doesn't exist, insert it
and then either you get a …
0
votes
2answers
35 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 …
1
vote
2answers
37 views
MySql unique id for several records
I use one table withe some casual columns such as id, name, email, etc...also I'm inserting a variable numbers of records in each transaction, to be much efficient I need to have o …
0
votes
1answer
147 views
How do I make IEditableObject.EndEdit atomic?
If I have an Address class that implements IEditableObject, I might have EndEdit implementation like this:
public void EndEdit()
{
// BeginEdit would have set _editInProgress …
0
votes
1answer
31 views
Tokyo Tyrant transaction support
I've noticed that rufus-tokyo and other apis support transactions in Tokyo Tyrant. I couldn't find any mention of the transaction support in the TT docs (http://1978th.net/tokyotyr …
2
votes
6answers
72 views
SQL Server Race Condition Question
(Note: this is for MS SQL Server)
Say you have a table ABC with a primary key identity column, and a CODE column. We want every row in here to have a unique, sequentially-generat …
0
votes
8answers
116 views
Nervous Running Queries (SQL Server): What do you think about this?
I'm a frequent SQL Server Management Studio user. Sometimes I'm in situations where I have an update or delete query to run, but I'm afraid some typo or logic error on my part is …
