Add separators to documentation

This commit is contained in:
Bryan Terce 2017-11-18 19:52:52 -08:00
parent 9f414387b6
commit fabf37de23
1 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,8 @@ The url format for your database may vary! The example below uses a MySQL databa
set {sql} to the database "mysql://localhost:3306/sys?user=admin&password=12345&useSSL=false"
```
---
### Effect `Execute Statement`
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::*}
execute "select * from %{table variable}%" in {sql} and store the result in {output::*}
```
---
### Expression `Unsafe Expression` => `text`
Opts out of automatic SQL injection protection for a specific expression in a statement.
@ -55,6 +59,8 @@ execute "select %unsafe {columns variable}% from %{table variable}%" in {sql} an
execute unsafe {fully dynamic query} in {sql}
```
---
### Expression `Last Data Source Error` => `text`
Stores the error from the last executed statement, if there was one.
@ -62,3 +68,5 @@ Stores the error from the last executed statement, if there was one.
#### Syntax
`[the] [last] (sql|db|data(base|[ ]source)) error`
---