Skip to content

Commit

Permalink
Merge pull request #12 from FrendsPlatform/Documentation_fixes
Browse files Browse the repository at this point in the history
Documentation fixes
  • Loading branch information
OssiGalkin authored Dec 20, 2021
2 parents 83d118c + f3cb556 commit 1e6fa6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ The second name 'Adam' can be now be accessed by #result[1].Name in the process
#### Input
| Property | Type | Description | Example |
|-------------------|-----------------------------------|---------------------------------------------------------|-------------------------------------------|
| Execute | string | The stored procedure that will be executed. | `SpGetResultsByAge @Age`
| Execute | string | The stored procedure that will be executed. | `SpGetResultsByAge`
| Parameters | Array{Name: string, Value: string} | A array of parameters to be appended to the query. | `Name = Age, Value = 42`
| Connection String | string | Connection String to be used to connect to the database.| `Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;`

Expand Down Expand Up @@ -126,7 +126,7 @@ The second name 'Adam' can be now be accessed by #result[1].Name in the process
#### Input
| Property | Type | Description | Example |
|-------------------|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
| Input Data | string | The data that will be inserted into the database. The data is a json string formated as Json Array of objects. All object property names need to match with the destination table column names. | `[{"Column1": "One", "Column2": 10},{"Column1": "Two", "Column2": 20}]` |
| Input Data | string | The data that will be inserted into the database. The data is a json string formated as Json Array of objects. The data has to have the same number of columns in the same order as the destination table. | `[{"Column1": "One", "Column2": 10},{"Column1": "Two", "Column2": 20}]` |
| Table Name | string | Destination table name. | MyTable |
| Connection String | string | Connection String to be used to connect to the database. | Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword; |

Expand Down

0 comments on commit 1e6fa6f

Please sign in to comment.