Imato.MsSql.ExternalData 2.6.2

dotnet add package Imato.MsSql.ExternalData --version 2.6.2
NuGet\Install-Package Imato.MsSql.ExternalData -Version 2.6.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Imato.MsSql.ExternalData" Version="2.6.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Imato.MsSql.ExternalData --version 2.6.2
#r "nuget: Imato.MsSql.ExternalData, 2.6.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Imato.MsSql.ExternalData as a Cake Addin
#addin nuget:?package=Imato.MsSql.ExternalData&version=2.6.2

// Install Imato.MsSql.ExternalData as a Cake Tool
#tool nuget:?package=Imato.MsSql.ExternalData&version=2.6.2

Imato.MsSql.ExternalData

How to put data from external cmd process to SQL server

Using

Programm for produse data
  1. Create your own process to produce new data. Override CreateData in DataProcess
internal class DaysProcess : DataProcess<MonthDay>
{
    public DaysProcess(string[] args) : base(args)
    {
    }

    protected override IEnumerable<MonthDay> CreateData(
        IDictionary<string, string> parameters)
    {
        ....
    }
}
  1. Create table for DTO class MonthDay in DB
create table ##test
(
Id int,
Name varchar(30),
Date datetime,
IsDayOf bit
)
  1. Run process
public static async Task Main(string[] args)
{
    await new DaysProcess(args).RunAsync();
}
  1. Start your executable for producing data with parameters
>Imato.MsSql.ExternalData.Example.exe Year=2022 Month=10

Add special parameter for destination table

>Imato.MsSql.ExternalData.Example.exe Year=2022 Month=10 Table=##test

Override connection string if it isn't local

>Imato.MsSql.ExternalData.Example.exe Year=2022 Month=10 Table=##test ConnectionString=yourConnection
  1. Execute your cmd util in t-sql script
    Create procedure execmd.sql in msdb.
    Start
exec dbo.execmd 'Imato.MsSql.ExternalData.Example.exe Year=2022 Month=10 Table=##test'

Use data from ##test in t-sql script.

Programm for execute same command without result
  1. Create your own command executor Override StartCommand in Process
internal class SameProcess : CommandProcess
{
    public SameProcess(string[] args) : base(args)
    {
    }

    protected override Task StartCommandAsync()
    {
        switch Command:
        .....
    }
}
  1. Run process
public static async Task Main(string[] args)
{
    await new SameProcess(args).RunAsync();
}
  1. Start your executable for execute command
>Imato.MsSql.ExternalData.Example.exe Command=Test
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.6.2 327 12/12/2022
2.6.1 289 12/9/2022
2.6.0 284 12/9/2022
2.5.0 288 12/9/2022
2.4.0 301 12/8/2022
2.3.0 291 12/8/2022
2.2.0 298 12/8/2022
2.1.0 294 12/8/2022
2.0.0 342 12/2/2022
1.5.0 317 12/1/2022
1.4.0 313 11/29/2022
1.3.0 312 11/29/2022
1.2.0 343 11/28/2022
1.1.0 337 11/28/2022
1.0.0 333 11/26/2022

Ready to use