Hi again
I have an SQL Statement which looks as follows:
BEGIN TRANSACTION
insert into tabletext bla bla
insert into tabletext bla bla
insert into tabletext bla bla
insert into tabletext bla bla
COMMIT TRANSACTION
This works fine, the data is inserted in the database. If I ommit the COMMIT data is not inserted as desired. But the problem is that I get in either case the SQL MEssage
No ResultSet was produced?
So i dont know in the end if the commit was successfull or if not. Anyone has got an idea what the problem could be? I use MS SQL Server
Cheers
Patrick