Skip to content

Commit fabf37d

Browse files
committed
Add separators to documentation
1 parent 9f41438 commit fabf37d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ The url format for your database may vary! The example below uses a MySQL databa
2020
set {sql} to the database "mysql://localhost:3306/sys?user=admin&password=12345&useSSL=false"
2121
```
2222

23+
---
24+
2325
### Effect `Execute Statement`
2426

2527
Executes a statement on a database and optionally stores the result in a variable. Expressions embedded in the query will be escaped to avoid SQL injection.
@@ -40,6 +42,8 @@ execute "select * from table" in {sql} and store the result in {output::*}
4042
execute "select * from %{table variable}%" in {sql} and store the result in {output::*}
4143
```
4244

45+
---
46+
4347
### Expression `Unsafe Expression` => `text`
4448

4549
Opts out of automatic SQL injection protection for a specific expression in a statement.
@@ -55,10 +59,14 @@ execute "select %unsafe {columns variable}% from %{table variable}%" in {sql} an
5559
execute unsafe {fully dynamic query} in {sql}
5660
```
5761

62+
---
63+
5864
### Expression `Last Data Source Error` => `text`
5965

6066
Stores the error from the last executed statement, if there was one.
6167

6268
#### Syntax
6369

6470
`[the] [last] (sql|db|data(base|[ ]source)) error`
71+
72+
---

0 commit comments

Comments
 (0)