Korjn.Data.Oradb.Client 1.1.9

Suggested Alternatives

Korjn.OracleClientInject

There is a newer version of this package available.
See the version list below for details.
dotnet add package Korjn.Data.Oradb.Client --version 1.1.9
                    
NuGet\Install-Package Korjn.Data.Oradb.Client -Version 1.1.9
                    
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.9" />
                    
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.9" />
                    
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.9
                    
#r "nuget: Korjn.Data.Oradb.Client, 1.1.9"
                    
#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.
#addin nuget:?package=Korjn.Data.Oradb.Client&version=1.1.9
                    
Install Korjn.Data.Oradb.Client as a Cake Addin
#tool nuget:?package=Korjn.Data.Oradb.Client&version=1.1.9
                    
Install Korjn.Data.Oradb.Client 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"
    },
    "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"
    }
  },
}

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 252 1/13/2024 1.1.15 is deprecated because it is no longer maintained.
1.1.14 198 12/26/2023 1.1.14 is deprecated because it is no longer maintained.
1.1.13 190 12/6/2023 1.1.13 is deprecated because it is no longer maintained.
1.1.12 179 11/16/2023 1.1.12 is deprecated because it is no longer maintained.
1.1.11 159 11/16/2023 1.1.11 is deprecated because it is no longer maintained.
1.1.10 157 11/13/2023 1.1.10 is deprecated because it is no longer maintained.
1.1.9 161 11/13/2023 1.1.9 is deprecated because it is no longer maintained.
1.1.8 155 11/13/2023 1.1.8 is deprecated because it is no longer maintained.
1.1.7 157 11/11/2023 1.1.7 is deprecated because it is no longer maintained.
1.1.6 161 11/11/2023 1.1.6 is deprecated because it is no longer maintained.
1.1.5 157 11/11/2023 1.1.5 is deprecated because it is no longer maintained.
1.1.4 161 11/9/2023 1.1.4 is deprecated because it is no longer maintained.
1.1.3 154 11/9/2023 1.1.3 is deprecated because it is no longer maintained.
1.1.2 164 11/7/2023 1.1.2 is deprecated because it is no longer maintained.
1.1.1 131 11/7/2023 1.1.1 is deprecated because it is no longer maintained.
1.1.0 178 10/24/2023 1.1.0 is deprecated because it is no longer maintained.
1.0.9 183 10/23/2023 1.0.9 is deprecated because it is no longer maintained.
1.0.8 180 10/19/2023 1.0.8 is deprecated because it is no longer maintained.
1.0.7 152 8/16/2023 1.0.7 is deprecated because it is no longer maintained.
1.0.6 261 3/17/2023 1.0.6 is deprecated because it is no longer maintained.
1.0.5 290 2/24/2023 1.0.5 is deprecated because it is no longer maintained.
1.0.4 287 2/24/2023 1.0.4 is deprecated because it is no longer maintained.
1.0.3 341 12/7/2022 1.0.3 is deprecated because it is no longer maintained.
1.0.2 321 12/7/2022 1.0.2 is deprecated because it is no longer maintained.