System.Data.Odbc
10.0.0-preview.6.25321.102
See the version list below for details.
dotnet add package System.Data.Odbc --version 10.0.0-preview.6.25321.102
NuGet\Install-Package System.Data.Odbc -Version 10.0.0-preview.6.25321.102
<PackageReference Include="System.Data.Odbc" Version="10.0.0-preview.6.25321.102" />
<PackageVersion Include="System.Data.Odbc" Version="10.0.0-preview.6.25321.102" />
<PackageReference Include="System.Data.Odbc" />
paket add System.Data.Odbc --version 10.0.0-preview.6.25321.102
#r "nuget: System.Data.Odbc, 10.0.0-preview.6.25321.102"
#:package System.Data.Odbc@10.0.0-preview.6.25321.102
#addin nuget:?package=System.Data.Odbc&version=10.0.0-preview.6.25321.102&prerelease
#tool nuget:?package=System.Data.Odbc&version=10.0.0-preview.6.25321.102&prerelease
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 = ""; // Fill in
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
Related Packages
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 | Versions 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 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. net9.0 is compatible. 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 is compatible. 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 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. |
-
.NETFramework 4.6.2
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net10.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
GitHub repositories (29)
Showing the top 20 popular GitHub repositories that depend on System.Data.Odbc:
Repository | Stars |
---|---|
DotNetNext/SqlSugar
.Net aot ORM SqlServer ORM Mongodb ORM MySql 瀚高 Postgresql ORM DB2 Hana 高斯 Duckdb C# VB.NET Sqlite ORM Oracle ORM Mysql Orm 虚谷数据库 达梦 ORM 人大金仓 ORM 神通ORM C# ORM , C# ORM .NET ORM NET9 ORM .NET8 ORM ClickHouse ORM QuestDb ,TDengine ORM,OceanBase ORM,GaussDB ORM,Tidb ORM Object/Relational Mapping
|
|
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
|
|
dotnetcore/FreeSql
.NET aot orm, VB.NET/C# orm, Mysql/PostgreSQL/SqlServer/Oracle orm, Sqlite/Firebird/Clickhouse/DuckDB orm, 达梦/金仓/虚谷/翰高/高斯 orm, 神通 orm, 南大通用 orm, 国产 orm, TDengine 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
|
|
nhibernate/nhibernate-core
NHibernate Object Relational Mapper
|
|
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
|
|
shuxinqin/Chloe
A lightweight and high-performance Object/Relational Mapping(ORM) library for .NET --C#
|
|
ikvmnet/ikvm
A Java Virtual Machine and Bytecode-to-IL Converter for .NET
|
|
polterguy/magic
An AI-based Low-Code and No-Code software development automation framework
|
|
dotnet/SqlClient
Microsoft.Data.SqlClient provides database connectivity to SQL Server for .NET applications.
|
|
dotnet/dotnet-api-docs
.NET API reference documentation (.NET 5+, .NET Core, .NET Framework)
|
|
paillave/Etl.Net
Mass processing data with a complete ETL for .net developers
|
|
aelassas/wexflow
Workflow Automation Engine
|
|
majorsilence/My-FyiReporting
Majorsilence Reporting, .NET report designer, viewer, and pdf creation.
|
|
TortugaResearch/Tortuga.Chain
A fluent ORM for .NET
|
|
Warewolf-ESB/Warewolf
Effortless Microservice Design and Integration. This repository includes the code-base for the Warewolf Studio and Server.
|
|
PeterWaher/IoTGateway
New project
|
|
UiPath/Community.Activities
Repository of Windows Workflow Foundation Activities for UiPath Community
|
|
OpenTouryoProject/OpenTouryo
”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.)
|
Version | Downloads | Last Updated |
---|---|---|
10.0.0-preview.7.25380.108 | 0 | 8/11/2025 |
10.0.0-preview.7.25380.105 | 0 | 8/6/2025 |
10.0.0-preview.6.25358.103 | 0 | 7/17/2025 |
10.0.0-preview.6.25321.102 | 0 | 6/25/2025 |
10.0.0-preview.5.25280.105 | 0 | 6/2/2025 |
10.0.0-preview.5.25277.114 | 0 | 6/3/2025 |
10.0.0-preview.5.25277.101 | 0 | 5/29/2025 |
10.0.0-preview.5.25266.103 | 0 | 5/20/2025 |
10.0.0-preview.4.25255.103 | 0 | 5/12/2025 |
9.0.7 | 0 | 7/11/2025 |
4.6.0-preview.19073.11 | 2 | 1/28/2019 |
4.6.0-preview.18571.3 | 1 | 11/30/2018 |