MonetDB 2.1.2
.NET Standard 2.0
Install-Package MonetDB -Version 2.1.2
dotnet add package MonetDB --version 2.1.2
<PackageReference Include="MonetDB" Version="2.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MonetDB --version 2.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MonetDB, 2.1.2"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install MonetDB as a Cake Addin
#addin nuget:?package=MonetDB&version=2.1.2
// Install MonetDB as a Cake Tool
#tool nuget:?package=MonetDB&version=2.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Overview
.NET Standard Data Provider for MonetDB
Tests included.
Supported Mapi protocols:
- version 8
- version 9
Versions
- 2.1.0 Cancelling command by terminate session/connection. For this feature use
MonetDbEnviroments.CommandCloseStrategy
- 2.0.1 HugeInt DataType support
- 2.0.0 Redirect connection, Web Api Client (.NET Core 2.2 + ReactJs).
- 1.6.0 MonetDbConnectionStringBuilder
- 1.5.0 Need more support, copy from stdin test
- 1.4.1
BugFix
error handler - 1.4.0 Large query support
- 1.3.6 Default Isolation Level Unspecified → Serializable
- 1.3.5
BugFix
correct char dbtype - 1.3.4 Date parser, tests
- 1.3.3 Data/Db types
- 1.3.2
BugFix
multiline exceptions, disposing connections, parallelling pool - 1.3.1
BugFix
"Unrecognized {number}]" - 1.3 New lexer for parsing mapi data rows
- 1.2 Change implementig System.Data interfaces to extending abstract classes: System.Data.IDb... → System.Data.Common.Db...
- 1.1.1 double E format parsing
Example
MonetDbConnection conn = new MonetDbConnection("Host=localhost;port=50000;Database=demo;username=monetdb;password=monetdb");
conn.Open();
MonetDbCommand cmd = new MonetDbCommand("SELECT * FROM foo;", conn);
var reader = cmd.ExecuteReader();
while(reader.Read())
{
// The value in the table is an integer (INT)
// if it were a string, use reader.GetString(0);
Console.WriteLine(reader.GetInt32(0));
}
Console.ReadLine();
See the Wiki for more examples.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
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 |
---|---|---|
2.1.2 | 162 | 10/27/2021 |