System.Data.Odbc 8.0.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.Data.Odbc --version 8.0.0
NuGet\Install-Package System.Data.Odbc -Version 8.0.0
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="System.Data.Odbc" Version="8.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.Data.Odbc --version 8.0.0
#r "nuget: System.Data.Odbc, 8.0.0"
#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 System.Data.Odbc as a Cake Addin
#addin nuget:?package=System.Data.Odbc&version=8.0.0

// Install System.Data.Odbc as a Cake Tool
#tool nuget:?package=System.Data.Odbc&version=8.0.0

About

This package implements a data provider for ODBC data sources.

Key Features

Allows access to ODBC data sources.

How to Use

This is a basic example of retrieving the results of a query using an OdbcDataReader. For examples of using an OdbcDataAdapter, and of updating an ODBC data source, please see the documentation.

using System.Data.Odbc;

string connectionString = "";
string queryString = "SELECT DISTINCT CustomerID FROM Orders";

using OdbcConnection connection = new OdbcConnection(connectionString);
using OdbcCommand command = new OdbcCommand(queryString, connection);

connection.Open();
using OdbcDataReader reader = command.ExecuteReader();

while (reader.Read())
{
    Console.WriteLine("CustomerID={0}", reader[0]);
}

Main Types

  • OdbcConnection represents a connection to an ODBC data source.
  • OdbcCommand represents an SQL statement or stored procedure to execute against an ODBC data source..
  • OdbcDataReader provides a way of reading a forward-only stream of data rows from an ODBC data source.
  • OdbcDataAdapter represents a set of data commands and a database connection that are used to fill a DataSet and update the ODBC data source.

Additional Documentation

System.Data.OleDb is a similar package for accessing OLE DB data sources.

Feedback & Contributing

System.Data.Odbc is released as open source under the MIT license. Bug reports are welcome at the GitHub repository. This package is considered complete and we only consider low-risk, high-impact fixes that are necessary to maintain or improve quality.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 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 is compatible.  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 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 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  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 (188)

Showing the top 5 NuGet packages that depend on System.Data.Odbc:

Package Downloads
Microsoft.Windows.Compatibility The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard.

IKVM

Java SE 8 Virtual Machine for .NET

Stimulsoft.Reports.Engine.NetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The native .NET Core cross platform report engine is a part of the reporting tool for .NET Core and .NET frameworks, that renders reports from getting data from the source, building bands, calculating aggregate functions, charting, applying styles, conditions, filtering, sorting, and more. Also, the report engine has algorithms for exporting reports to various formats such as PDF, Rich Text, Excel, and others.

EnterpriseLibrary.Data.NetCore

The Data Access Application Block simplifies the development of tasks that implement common data access functionality. Applications can use this application block in a variety of situations, such as reading data for display, passing data through application layers, and submitting changed data back to the database system.

OO.Data

Data Entity base types and declarations for EasyDataCore infrastructure

GitHub repositories (25)

Showing the top 5 popular GitHub repositories that depend on System.Data.Odbc:

Repository Stars
DotNetNext/SqlSugar
.Net aot ORM Fastest ORM Simple Easy Sqlite orm Oracle ORM Mysql Orm postgresql ORm SqlServer oRm 达梦 ORM 人大金仓 ORM 神通ORM C# ORM , C# ORM .NET ORM NET5 ORM .NET6 ORM ClickHouse orm QuestDb ,TDengine ORM,OceanBase orm,GaussDB orm ,Tidb orm Object/Relational Mapping
umbraco/Umbraco-CMS
The simple, flexible and friendly ASP.NET CMS used by more than 730.000 websites
dotnetcore/FreeSql
🦄 .NET aot orm, C# orm, VB.NET orm, Mysql orm, Postgresql orm, SqlServer orm, Oracle orm, Sqlite orm, Firebird orm, 达梦 orm, 人大金仓 orm, 神通 orm, 翰高 orm, 南大通用 orm, 虚谷 orm, 国产 orm, Clickhouse orm, QuestDB orm, MsAccess orm.
linq2db/linq2db
Linq to database provider.
FastReports/FastReport
Free Open Source Reporting tool for .NET6/.NET Core/.NET Framework that helps your application generate document-like reports
Version Downloads Last updated
9.0.0-preview.2.24128.5 238 3/12/2024
9.0.0-preview.1.24080.9 3,146 2/13/2024
8.0.0 720,873 11/14/2023
8.0.0-rc.2.23479.6 17,442 10/10/2023
8.0.0-rc.1.23419.4 10,206 9/12/2023
8.0.0-preview.7.23375.6 10,769 8/8/2023
8.0.0-preview.6.23329.7 1,698 7/11/2023
8.0.0-preview.5.23280.8 1,979 6/13/2023
8.0.0-preview.4.23259.5 9,675 5/16/2023
8.0.0-preview.3.23174.8 19,244 4/11/2023
8.0.0-preview.2.23128.3 5,389 3/14/2023
8.0.0-preview.1.23110.8 19,056 2/21/2023
7.0.0 4,073,532 11/7/2022
7.0.0-rc.2.22472.3 17,598 10/11/2022
7.0.0-rc.1.22426.10 64,182 9/14/2022
7.0.0-preview.7.22375.6 13,606 8/9/2022
7.0.0-preview.6.22324.4 1,273 7/12/2022
7.0.0-preview.5.22301.12 1,844 6/14/2022
7.0.0-preview.4.22229.4 10,348 5/10/2022
7.0.0-preview.3.22175.4 2,521 4/13/2022
7.0.0-preview.2.22152.2 11,871 3/14/2022
7.0.0-preview.1.22076.8 5,848 2/17/2022
6.0.2-mauipre.1.22102.15 1,254 2/15/2022
6.0.2-mauipre.1.22054.8 6,203 1/19/2022
6.0.1 2,497,068 9/13/2022
6.0.0 7,256,160 11/8/2021
6.0.0-rc.2.21480.5 7,008 10/12/2021
6.0.0-rc.1.21451.13 8,167 9/14/2021
6.0.0-preview.7.21377.19 2,998 8/10/2021
6.0.0-preview.6.21352.12 1,997 7/14/2021
6.0.0-preview.5.21301.5 7,099 6/15/2021
6.0.0-preview.4.21253.7 21,362 5/24/2021
6.0.0-preview.3.21201.4 8,565 4/8/2021
6.0.0-preview.2.21154.6 8,195 3/11/2021
6.0.0-preview.1.21102.12 7,874 2/12/2021
5.0.0 22,010,959 11/9/2020
5.0.0-rc.2.20475.5 39,821 10/13/2020
5.0.0-rc.1.20451.14 4,954 9/14/2020
5.0.0-preview.8.20407.11 7,332 8/25/2020
5.0.0-preview.7.20364.11 18,756 7/21/2020
5.0.0-preview.6.20305.6 4,111 6/25/2020
5.0.0-preview.5.20278.1 4,704 6/10/2020
5.0.0-preview.4.20251.6 8,295 5/18/2020
5.0.0-preview.3.20214.6 25,812 4/23/2020
5.0.0-preview.2.20160.6 20,368 4/2/2020
5.0.0-preview.1.20120.5 2,704 3/16/2020
4.7.0 9,886,977 12/3/2019
4.7.0-preview3.19551.4 2,213 11/13/2019
4.7.0-preview2.19523.17 12,247 11/1/2019
4.7.0-preview1.19504.10 9,845 10/15/2019
4.6.0 2,637,383 9/23/2019
4.6.0-rc1.19456.4 4,632 9/16/2019
4.6.0-preview9.19421.4 2,772 9/4/2019
4.6.0-preview9.19416.11 430 9/4/2019
4.6.0-preview8.19405.3 8,880 8/13/2019
4.6.0-preview7.19362.9 8,335 7/23/2019
4.6.0-preview6.19303.8 37,006 6/12/2019
4.6.0-preview6.19264.9 425 9/4/2019
4.6.0-preview5.19224.8 23,454 5/6/2019
4.6.0-preview4.19212.13 2,586 4/18/2019
4.6.0-preview3.19128.7 7,330 3/6/2019
4.6.0-preview.19073.11 13,470 1/29/2019
4.6.0-preview.18571.3 13,344 12/3/2018
4.5.0 12,843,485 5/29/2018
4.5.0-rc1 47,123 5/6/2018
4.5.0-preview2-26406-04 17,816 4/10/2018
4.5.0-preview1-26216-02 549,947 2/26/2018
4.5.0-preview1-25914-04 311,467 11/15/2017