mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-21 09:51:31 -07:00
(cherry picked from commit 3ff1fad5f3
)
This commit is contained in:
parent
43e688a37a
commit
43a8037232
6 changed files with 34 additions and 34 deletions
|
@ -27,7 +27,7 @@ options:
|
|||
the state has been changed even if it has not. If it is important in your
|
||||
workflow, use the C(PyMySQL) connector instead.
|
||||
type: raw
|
||||
required: yes
|
||||
required: true
|
||||
positional_args:
|
||||
description:
|
||||
- List of values to be passed as positional arguments to the query.
|
||||
|
@ -46,7 +46,7 @@ options:
|
|||
description:
|
||||
- Where passed queries run in a single transaction (C(yes)) or commit them one-by-one (C(no)).
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
seealso:
|
||||
- module: community.mysql.mysql_db
|
||||
author:
|
||||
|
@ -87,7 +87,7 @@ EXAMPLES = r'''
|
|||
query:
|
||||
- INSERT INTO articles (id, story) VALUES (2, 'my_long_story')
|
||||
- INSERT INTO prices (id, price) VALUES (123, '100.00')
|
||||
single_transaction: yes
|
||||
single_transaction: true
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue