Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

Commit Transaction Version 10 (Java)

Action group: Databases

...

Description

The action completes the current transaction and confirms all changes that were made within this transaction

Action icon

Image Added

Settings of parameters

PropertyDescriptionTypeFilling exampleMandatory field
Parameters
DB contextConnection context to the selected databaseRobin.DbContextDatabase contextYes

Special conditions of use

None.

Example of use

Task

Connect to the database, run a query:

Блок кода
languagesql
themeEclipse
titleПервый запрос
UPDATE Table1 SET title = 'Car' WHERE id=2

Then close the transaction and perform an additional query without closing the transaction:

Блок кода
languagesql
themeEclipse
titleВторой запрос
UPDATE Table1 SET title = 'Phone' WHERE id=3

The original view of the table:

Image Added

Solution

Use the actions "Connect Standard Db", "Execute Sql Statement", "Commit Transaction". 

Implementation

  1. Assemble a robot scheme consisting of actions:
    Image Added

  2. Set the parameters for the "Connect Standard Db" action (Instructions on how to connect to Microsoft SQL Server from Robin Studio).
    Image Added

  3. Set the parameters for "Execute Sql Statement 1" action. Image Added

  4. Set the parameters of the "Commit Transaction" action. 
    Image Added

  5. Set the parameters of the "Execute Sql Statement 2" action.
    Image Added

  6. Click on the "Start" button in the top panel. 

Result

The program robot completed successfully. The first transaction has been completed. The changes within the first transaction have been confirmed and saved in the database:

Image Added

The subsequent queries that come after the "Commit Transaction" action are queries of the second transaction that was not closed, accordingly, the query was not executed on the database.

Image Added

Закрыть транзакцию / Commit transaction

Группа действий: Базы данных

Действие завершает текущую транзакцию и подтверждает все изменения, которые были сделаны в рамках данной транзакции.
Image Removed

Параметры

Входные параметры:

Контекст БД Контекст подключения к выбранной базе данных.

Настройки

...

Свойство

...

Англ. наименование

...

Описание

...

Тип

...

Пример заполнения

...

Обязательность заполнения поля

...

Параметры

...

Особые условия использования

Отсутствуют.

Пример использования 

Задача: подключиться к базе данных, выполнить запросы (которые являются единой транзакцией), далее закрыть транзакцию. 

Решение: воспользоваться действиями "Стандартное подключение", "Выполнить запрос", "Закрыть транзакцию". 

Реализация:

...

Результат:

Программный робот отработал успешно. Первая транзакция завершена. Подтверждены изменения в рамках первой транзакции, сохранены в базе.  

Последующие запросы, которые идут после действия "Закрыть транзакцию" являются запросами второй транзакции. 

Image Removed