Korjn.Data.Oradb.Client 1.1.15

Suggested Alternatives

Korjn.OracleClientInject

dotnet add package Korjn.Data.Oradb.Client --version 1.1.15
                    
NuGet\Install-Package Korjn.Data.Oradb.Client -Version 1.1.15
                    
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="Korjn.Data.Oradb.Client" Version="1.1.15" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Korjn.Data.Oradb.Client" Version="1.1.15" />
                    
Directory.Packages.props
<PackageReference Include="Korjn.Data.Oradb.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Korjn.Data.Oradb.Client --version 1.1.15
                    
#r "nuget: Korjn.Data.Oradb.Client, 1.1.15"
                    
#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.
#:package Korjn.Data.Oradb.Client@1.1.15
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Korjn.Data.Oradb.Client&version=1.1.15
                    
Install as a Cake Addin
#tool nuget:?package=Korjn.Data.Oradb.Client&version=1.1.15
                    
Install as a Cake Tool

Korjn.Data.Oradb.Client

appsettings.json

{
    "OraClient": {
      "MainDb":{
        "Host": "xxx.xxx.xxx.xxx",
        "Port": xxxx,
        "ServiceName" : "xxxx"
        "DefaultSchema": "xxxx",
        "MinPoolSize": 1,
        "MaxPoolSize": 5,
        "IncrPoolSize": 1,
        "DecrPoolSize": 1,
        "ConnectionLifeTime": 180,
        "ConnectionTimeout": 60,        
        "CredentialFile":"main-db.json",
        "DateFormat":"dd.mm.yyyy",
        "ModuleName":"app-1",        
    },
    "TestDb":{
        "Host": "xxx.xxx.xxx.xxx",
        "Port": xxxx,
        "ServiceName" : "xxxx"
        "DefaultSchema": "xxxx",
        "UserName": "xxxx",
        "Password": "xxxx",
        "MinPoolSize": 1,
        "MaxPoolSize": 5,
        "IncrPoolSize": 1,
        "DecrPoolSize": 1,
        "ConnectionLifeTime": 180,
        "ConnectionTimeout": 60,        
        "CredentialFile":"test-db.json",
        "DateFormat":"dd.mm.yyyy",
        "ModuleName":"app-1",        
    }
  },
}

CredentialFile

{
  "UserName": "",
  "Password": ""
}

Service registration

using Korjn.Extensions.DependencyInjection;
...

services.AddOraClient(); 
...

Injection


using Korjn.Data.Oradb;
namespace DependencyInjection.Example;

public sealed class Worker : BackgroundService
{
    private readonly IMessageWriter _messageWriter;
    private readonly IOraClientFactory factory;
    private readonly IOraClient client;

    public Worker(IMessageWriter messageWriter, IOraClientFactory factory)
    {
        _messageWriter = messageWriter;
                
        client = factory.CreateClient("MainDb");
    }    
}
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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
1.1.15 314 1/13/2024 1.1.15 is deprecated because it is no longer maintained.
1.1.14 242 12/26/2023 1.1.14 is deprecated because it is no longer maintained.
1.1.13 221 12/6/2023 1.1.13 is deprecated because it is no longer maintained.
1.1.12 206 11/16/2023 1.1.12 is deprecated because it is no longer maintained.
1.1.11 179 11/16/2023 1.1.11 is deprecated because it is no longer maintained.
1.1.10 185 11/13/2023 1.1.10 is deprecated because it is no longer maintained.
1.1.9 193 11/13/2023 1.1.9 is deprecated because it is no longer maintained.
1.1.8 183 11/13/2023 1.1.8 is deprecated because it is no longer maintained.
1.1.7 187 11/11/2023 1.1.7 is deprecated because it is no longer maintained.
1.1.6 191 11/11/2023 1.1.6 is deprecated because it is no longer maintained.
1.1.5 197 11/11/2023 1.1.5 is deprecated because it is no longer maintained.
1.1.4 191 11/9/2023 1.1.4 is deprecated because it is no longer maintained.
1.1.3 187 11/9/2023 1.1.3 is deprecated because it is no longer maintained.
1.1.2 197 11/7/2023 1.1.2 is deprecated because it is no longer maintained.
1.1.1 164 11/7/2023 1.1.1 is deprecated because it is no longer maintained.
1.1.0 213 10/24/2023 1.1.0 is deprecated because it is no longer maintained.
1.0.9 217 10/23/2023 1.0.9 is deprecated because it is no longer maintained.
1.0.8 225 10/19/2023 1.0.8 is deprecated because it is no longer maintained.
1.0.7 197 8/16/2023 1.0.7 is deprecated because it is no longer maintained.
1.0.6 328 3/17/2023 1.0.6 is deprecated because it is no longer maintained.
1.0.5 350 2/24/2023 1.0.5 is deprecated because it is no longer maintained.
1.0.4 336 2/24/2023 1.0.4 is deprecated because it is no longer maintained.
1.0.3 400 12/7/2022 1.0.3 is deprecated because it is no longer maintained.
1.0.2 372 12/7/2022 1.0.2 is deprecated because it is no longer maintained.