FRENDS SQL Tasks.
You can install the task via FRENDS UI Task view, by searching for packages. You can also download the latest NuGet package from https://www.myget.org/feed/frends/package/nuget/Frends.Sql and import it manually via the Task view.
Clone a copy of the repo
git clone https://github.com/FrendsPlatform/Frends.Sql.git
Restore dependencies
dotnet restore
Rebuild the project
dotnet build
Run Tests To run the tests you will need an SQL server. You can set the database connection string in test project appsettings.json file
dotnet test Frends.Sql.Tests
Create a nuget package
dotnet pack Frends.Sql
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes
NOTE: Be sure to merge the latest from "upstream" before making a pull request!
Property | Type | Description | Example |
---|---|---|---|
Query | string | The query that will be executed to the database. | select Name,Age from MyTable where AGE = @Age |
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; |
Property | Type | Description |
---|---|---|
Command Timeout | int | Timeout in seconds to be used for the query. 60 seconds by default. |
Sql Transaction Isolation Level | SqlTransationIsolationLevel | Transactions specify an isolation level that defines the degree to which one transaction must be isolated from resource or data modifications made by other transactions. Possible values are: Default, None, Serializable, ReadUncommitted, ReadCommitted, RepeatableRead, Snapshot. Additional documentation https://msdn.microsoft.com/en-us/library/ms378149(v=sql.110).aspx |
JToken. JObject[]
Example result
[
{
"Name": "Foo",
"Age": 42
},
{
"Name": "Adam",
"Age": 42
}
]
The second name 'Adam' can be now be accessed by #result[1].Name in the process parameter editor.
Property | Type | Description | Example |
---|---|---|---|
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; |
Property | Type | Description |
---|---|---|
Command Timeout | int | Timeout in seconds to be used for the query. 60 seconds by default. |
Sql Transaction Isolation Level | SqlTransationIsolationLevel | Transactions specify an isolation level that defines the degree to which one transaction must be isolated from resource or data modifications made by other transactions. Possible values are: Default, None, Serializable, ReadUncommitted, ReadCommitted, RepeatableRead, Snapshot. Additional documentation https://msdn.microsoft.com/en-us/library/ms378149(v=sql.110).aspx |
JToken. JObject[]
Example result
[
{
"Name": "Foo",
"Age": 42
},
{
"Name": "Adam",
"Age": 42
}
]
The second name 'Adam' can be now be accessed by #result[1].Name in the process parameter editor.
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. 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; |
Property | Type | Description |
---|---|---|
Command Timeout Seconds | int | Timeout in seconds to be used for the query. Default is 60 seconds, |
Fire Triggers | bool | When specified, cause the server to fire the insert triggers for the rows being inserted into the database. |
Keep Identity | bool | Preserve source identity values. When not specified, identity values are assigned by the destination. |
Sql Transaction Isolation Level | SqlTransationIsolationLevel | Transactions specify an isolation level that defines the degree to which one transaction must be isolated from resource or data modifications made by other transactions. Possible values are: Default, None, Serializable, ReadUncommitted, ReadCommitted, RepeatableRead, Snapshot. Additional documentation https://msdn.microsoft.com/en-us/library/ms378149(v=sql.110).aspx |
Convert Empty PropertyValues To Null | bool | If the input properties have empty values i.e. "", the values will be converted to null if this parameter is set to true. |
Integer - Number of copied rows
Property | Type | Description | Example |
---|---|---|---|
Query | string | The query that will be executed to the database. | insert into MyTable(ID,NAME) VALUES (@Id, @FirstName) |
Input Json | string | A Json Array of objects that has their properties mapped to the parameters in the Query | [{"Id":10, "FirstName": "Foo"},{"Id":15, "FirstName": "Bar"}] |
Connection String | string | Connection String to be used to connect to the database. | Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword; |
Property | Type | Description |
---|---|---|
Command Timeout Seconds | int | Timeout in seconds to be used for the query. 60 seconds by default. |
Sql Transaction Isolation Level | SqlTransationIsolationLevel | Transactions specify an isolation level that defines the degree to which one transaction must be isolated from resource or data modifications made by other transactions. Possible values are: Default, None, Serializable, ReadUncommitted, ReadCommitted, RepeatableRead, Snapshot. Additional documentation https://msdn.microsoft.com/en-us/library/ms378149(v=sql.110).aspx |
Integer - Number of affected rows
This project is licensed under the MIT License - see the LICENSE file for details