Skip to content

Commit 1e6fa6f

Browse files
authored
Merge pull request #12 from FrendsPlatform/Documentation_fixes
Documentation fixes
2 parents 83d118c + f3cb556 commit 1e6fa6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The second name 'Adam' can be now be accessed by #result[1].Name in the process
9191
#### Input
9292
| Property | Type | Description | Example |
9393
|-------------------|-----------------------------------|---------------------------------------------------------|-------------------------------------------|
94-
| Execute | string | The stored procedure that will be executed. | `SpGetResultsByAge @Age`
94+
| Execute | string | The stored procedure that will be executed. | `SpGetResultsByAge`
9595
| Parameters | Array{Name: string, Value: string} | A array of parameters to be appended to the query. | `Name = Age, Value = 42`
9696
| Connection String | string | Connection String to be used to connect to the database.| `Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;`
9797

@@ -126,7 +126,7 @@ The second name 'Adam' can be now be accessed by #result[1].Name in the process
126126
#### Input
127127
| Property | Type | Description | Example |
128128
|-------------------|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
129-
| 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}]` |
129+
| 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}]` |
130130
| Table Name | string | Destination table name. | MyTable |
131131
| Connection String | string | Connection String to be used to connect to the database. | Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword; |
132132

0 commit comments

Comments
 (0)