Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/views/jobManager/editJob/systemTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ export default function getSystemTab(options: JDBCOptions) {
{
value: `true`,
description: `True`,
text: `Commit (true)`,
text: `true`,
selected: options["auto commit"] === true,
},
{
value: `false`,
description: `False`,
text: `No commit (false)`,
text: `false`,
selected: options["auto commit"] === false,
},
],
Expand Down Expand Up @@ -287,32 +287,32 @@ export default function getSystemTab(options: JDBCOptions) {
[
{
value: `none`,
description: `None`,
text: `No commit (none)`,
description: `None (*NC or *NONE)`,
text: `none (*NC or *NONE)`,
selected: options["transaction isolation"] === `none`,
},
{
value: `read committed`,
description: `Read committed`,
text: `read committed`,
description: `Read committed (*CS)`,
text: `read committed (*CS)`,
selected: options["transaction isolation"] === `read committed`,
},
{
value: `read uncommitted`,
description: `Read uncommitted`,
text: `read uncommitted`,
description: `Read uncommitted (*UR or *CHG)`,
text: `read uncommitted (*UR or *CHG)`,
selected: options["transaction isolation"] === `read uncommitted`,
},
{
value: `repeatable read`,
description: `Repeatable read`,
text: `repeatable read`,
description: `Repeatable read (*RS or *ALL)`,
text: `repeatable read (*RS or *ALL)`,
selected: options["transaction isolation"] === `repeatable read`,
},
{
value: `serializable`,
description: `Serializable`,
text: `serializable`,
description: `Serializable (*RR)`,
text: `serializable (*RR)`,
selected: options["transaction isolation"] === `serializable`,
},
],
Expand Down
Loading