In Firebird 2.0, is using an explicit transaction faster on a SELECT command than executing the command with an implicit one?
|
|
|
|
|
|
|
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. |
||||||
|
|
|
Usually transaction adds some overhead. However, you should be careful if you do not have some default transaction started when you connect to Firebird. |
||
|
|
|
|
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. |
||
|
|
