Server failed to resume the transaction, desc: 3300000003.

Discussion of open issues, suggestions and bugs regarding SDAC (SQL Server Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
[email protected]
Posts: 10
Joined: Wed 20 Apr 2016 21:12

Server failed to resume the transaction, desc: 3300000003.

Post by [email protected] » Mon 13 Jun 2016 13:30

Hi Guys

Im getting an error "Server failed to resume the transaction, desc: 3300000003." on the ANDROID app (firemonkey; delphi seattle; sdac 7.3.12) when posting a transaction in a method for sql server 2012 and 2014
(no error for msde2000 and no error in win32 firemonkey however.)

btnSaveClick:
TRY
conn.starttransaction //conn is a TMSConnection connection with Tmsquery datasets
for i = 1 to x do
begin
if dataset.locate(??) then : dataset.edit; ... populate fields .... dataset.post; else Message;
conn.execsql('some update statement')
end
conn.commit
EXCEPT
conn.rollback
END

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: Server failed to resume the transaction, desc: 3300000003.

Post by AlexP » Tue 14 Jun 2016 11:34

hello,

Thank you for the sample. We have reproduce the issue and will investigate the reasons for such behavior.

Post Reply