vote up 1 vote down star

In Firebird 2.0, is using an explicit transaction faster on a SELECT command than executing the command with an implicit one?

flag

3 Answers

vote up 2 vote down check

All SQL commands (SELECT, INSERT, UPDATE etc.) can be executed ONLY within some transaction. You cannot run a command with out transaction being started prior to it.

link|flag
This is confusing, as I'm working with the .net Firebird provider, and it has a FBCommand constructor that takes a transaction as parameter, and another constructor that does not. Furthermore, a transaction is not being started before you explicitly do it in the FBConnection instance, by invoking dbcmd.BeginTransaction(). I've tested the speed of INSERT and have seen significant improvement when using a transaction, compared to using FBCommand without the transaction parameter. – luvieere Oct 29 at 17:30
I edited the question to reflect the implicit and explicit transaction models of FBCommand. – luvieere Oct 30 at 17:14
"I've tested the speed of INSERT and have seen significant improvement when using a transaction, compared to using FBCommand without the transaction parameter." In latter case every execution of INSERT statement involves implicit start and finish of internal transaction. That is why it takes longer time. – Andrei Nov 12 at 8:50
vote up 0 vote down

Usually transaction adds some overhead. However, you should be careful if you do not have some default transaction started when you connect to Firebird.

link|flag
vote up 1 vote down

Firebird cannot execute SQL commands without a transaction.

PS: You get the best performance results if you commit transactions, rather than rolling them back. Even if you only called SELECT and changed nothing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.