Devart.Data.DB2 5.1.100

Prefix Reserved
dotnet add package Devart.Data.DB2 --version 5.1.100
                    
NuGet\Install-Package Devart.Data.DB2 -Version 5.1.100
                    
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="Devart.Data.DB2" Version="5.1.100" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Devart.Data.DB2" Version="5.1.100" />
                    
Directory.Packages.props
<PackageReference Include="Devart.Data.DB2" />
                    
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 Devart.Data.DB2 --version 5.1.100
                    
#r "nuget: Devart.Data.DB2, 5.1.100"
                    
#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 Devart.Data.DB2@5.1.100
                    
#: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=Devart.Data.DB2&version=5.1.100
                    
Install as a Cake Addin
#tool nuget:?package=Devart.Data.DB2&version=5.1.100
                    
Install as a Cake Tool

NuGet Version NuGet Downloads Windows macOS Linux Docker Amazon (AWS) Microsoft Azure

Advanced C# Connection Provider for DB2

dotconnect_db2_cover_green

dotConnect for DB2 is a high-performance ORM enabled data provider for IBM DB2 that builds on ADO.NET technology.

The provider works with .NET Frameworks, .NET Core, .NET.

It supports a wide range of DB2-specific features, such as secure SSL and SSH connections, proxy server support, HTTP tunneling, full support for DB2-specific data types, and others. Package provides advanced Visual Studio integration and convenient visual component editors to simplify component tweaking.

More information at dotConnect for DB2.

Installation


  1. Install the NuGet Package
Install-Package Devart.Data.DB2
  1. Activate license
  • Free Trial License: Evaluate the full capabilities of dotConnect for DB2 in a non-commercial environment—ideal for development and testing. Start your free trial
  • Commercial License: Deploy dotConnect for DB2 in commercial applications and access full technical support with a valid license. Purchase a license

Work with EF Core and Entity Framework


For projects, using Entity Framework Core with DB2, install the Devart.Data.DB2.EFCore package.

Compatibility


The following table show which version of this package to use with which version of frameworks.

Frameworks Version support
.NET 10, 9, 8, 7, 6, 5
.NET Core 3.1, 3.0, 2.2, 2.1, 2.0
.NET Framework 4.8, 4.7, 4.6.2, 4.6.1

More information here

Key Features

  • High Performance Data Access: Built-in DB2-specific optimizations, efficient connection pooling, background data fetching, and pagination with selective loading ensure low-latency access for high-throughput applications.
  • Full ADO.NET Compatibility: 100% compliant with ADO.NET standards, supporting key interfaces such as DbConnection, DbCommand, DataSet, and DataTable for seamless integration into .NET applications.
  • DB2 Data Type Support: Full native support for DB2-specific data types and commands ensures accurate operation across all major IBM DB2 versions.
  • Broad Platform Compatibility: Fully compatible with .NET Framework, .NET Core, and .NET, supporting everything from legacy enterprise systems to modern cloud-native applications.
  • Disconnected Data Management: Manage relational data offline using DB2DataSet and DB2DataTable, with support for batch updates, UI data binding, and local data manipulation.
  • Real-Time Monitoring: Track database operations using the dbMonitor utility for per-component tracing of DB2 database events.
  • Visual Studio Integration: Accelerate development with wizards for connection setup, typed DataSet generation, and schema management—all embedded in Visual Studio.
  • Reliable Bulk Operations: Efficient bulk data import and export support for large-scale data migrations and ETL workflows.
  • Priority Support and Continuous Improvement: Backed by dedicated technical support and regular updates that deliver security enhancements, feature improvements, and long-term stability.

Usage


To help you get started quickly, here's a simple code example demonstrating how to connect to a DB2 database.

using Devart.Data.DB2;

class Program
{
  static void Main()
  {
    string connectionString = "" +
      "Server=127.0.0.1;" +
      "User Id=TestUser;" +
      "Password=TestPassword;" +
      "Database=TestDatabase;" +
      "Current Schema=TestSchema;" +
      "License Key=**********";

    using (DB2Connection connection = new DB2Connection(connectionString))
    {
      try
      {
        connection.Open();
        Console.WriteLine("Connection successful!");
      }
      catch (Exception ex)
      {
        Console.WriteLine($"Error: {ex.Message}");
      }
    }
  }
}

Basic Connection Strings

Property Meaning
Server Specifies the hostname or IP address and port of the DB2 server (e.g., host:50000).
User Id Specifies the user ID used to authenticate with the host.
Password Specifies the password for the user ID.
Database Specifies the DB2 database name to connect to.
Current Schema Specifies the default schema to use after connecting.
License Key Specify your license key in this parameter.

For more detailed tutorials, API reference, and advanced examples, visit our Getting Started guide.

Support Area

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on Devart.Data.DB2:

Package Downloads
Devart.Data.DB2.EFCore

dotConnect for DB2 is a high-performance ORM enabled data provider for DB2 that builds on ADO.NET technology. The provider works with .NET Frameworks 2.0+, .NET Core 2.0+, .NET 5+. More information at https://www.devart.com/dotconnect/db2/ License dotConnect for DB2 is available in several editions https://www.devart.com/dotconnect/db2/ordering.html The NuGet package initiates the retrieval of an activation key from the Devart website. This key is required to activate the product for a free trial. Key Features * Direct Mode: Allows your application to work with DB2 directly, without additional libraries. * ASP.NET Core: Supports ASP.NET Core Identity. * Performance: Uses many DB2-specific performance features and optimizations to ensure the highest performance. * Monitoring: Allows per-component tracing of database events with a free dbMonitor application. * Security: Supports various encryption SSL and SSH connections, etc. * Support and updates: Enjoy dedicated support team for prompt issue resolution and regular updates to keep your software running smoothly and securely.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.1.100 214 5/25/2026
5.1.72 253 4/23/2026
5.1.35 244 3/6/2026
5.1.33 214 2/24/2026
5.0.0 368 12/19/2025
4.2.290 275 7/30/2025
4.2.235 355 4/25/2025
4.2.193 296 2/11/2025
4.2.191 250 1/15/2025
4.2.190 282 12/27/2024
4.1.104 304 11/8/2024
4.1.20 350 5/30/2024
4.1.10 388 1/18/2024
4.0.0 437 11/17/2023