SQLPro icon indicating copy to clipboard operation
SQLPro copied to clipboard

How to set auto commit disabled?

Open kichigai opened this issue 8 years ago • 11 comments

Do support auto commit disabled? If support, how to set. If not support, exist implement plan? I use SQLPro Studio.

kichigai avatar Feb 09 '17 01:02 kichigai

For Oracle? Not currently supported. No ETA but I'll take a look at adding an option for it in the future.

On Wed, Feb 8, 2017 at 9:37 PM kichigai [email protected] wrote:

Do support auto commit disabled? If support, how to set. If not support, exist implement plan?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/hankinsoft/SQLPro/issues/76, or mute the thread https://github.com/notifications/unsubscribe-auth/ADA50FiUDiu0WNkYIEQpgGPPQsVIgwphks5ram3vgaJpZM4L7mIu .

hankinsoft avatar Feb 09 '17 11:02 hankinsoft

I use for MS SQL Server 8. I can't find auto commit disabled option.

kichigai avatar Feb 10 '17 02:02 kichigai

Please add this feature soon!

thwinkle avatar Aug 31 '18 13:08 thwinkle

Yes, I need this feature too.

242617 avatar Sep 25 '18 08:09 242617

Please add this feature soon!

I use SQLPro Studio for postgres, and sometimes I need disable auto commit.

e-bashtan avatar Sep 25 '18 08:09 e-bashtan

It would be great if you add this feature! Thank you!

nmaslakov avatar Sep 25 '18 08:09 nmaslakov

+1. I need this too. Thank you!

Creekmind avatar Sep 25 '18 08:09 Creekmind

yes yes, exactly!!1 I need this feature too! add it please

octomine avatar Sep 25 '18 10:09 octomine

I'm not overly familiar with auto commit disabled which is why I've been silent on this issue. Setting autocommit disabled basically makes sure no actions occurs unless you specifically run a commit command? I'll need to investigate to ensure the drivers I'm using in SQLPro support it for each database engine. Specifically it looks like people are asking for this with MSSQL and Postgres? Any other database types requested?

hankinsoft avatar Apr 11 '19 12:04 hankinsoft

In the interim you can explicitly begin a transaction before you do your queries and nothing will be committed until you tell it to. I saved a favorite the looks like this and with a click you can get a transaction and start writing away.

START TRANSACTION;

-- COMMIT;

sariabod avatar Jan 23 '20 00:01 sariabod

In the interim you can explicitly begin a transaction before you do your queries and nothing will be committed until you tell it to. I saved a favorite the looks like this and with a click you can get a transaction and start writing away.

START TRANSACTION;

-- COMMIT;
BEGIN TRANSACTION;

works on MSSQL.

2024 now. Stil have no this feature.

icharge avatar Sep 26 '24 07:09 icharge