ASql 1.0.0
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Framework 4.8
This package targets .NET Framework 4.8. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ASql --version 1.0.0
NuGet\Install-Package ASql -Version 1.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="ASql" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ASql --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ASql, 1.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 ASql as a Cake Addin #addin nuget:?package=ASql&version=1.0.0 // Install ASql as a Cake Tool #tool nuget:?package=ASql&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ASql
C# Library that let use multiple types of databases with same code
The supported databases are SqlServer and Oracle
You only have to declare wich type of database would like you use and use the classe in the same way of sql or oracle client.
Here you can find an example :
ASqlManager.DataBaseType = ASqlManager.DBType.Oracle;
using (ASqlConnection conn = new ASqlConnection(ConnectionString))
{
int i = 0;
conn.Open();
ASqlCommand cmd = new ASqlCommand(sql, conn);
using (DbDataReader read = cmd.ExecuteReader())
{
while (read.Read())
{
i = read.GetInt32(read.GetOrdinal("nvalue"));
}
}
Assert.AreEqual(7, i);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- Oracle.ManagedDataAccess (>= 23.5.1)
- System.Data.SqlClient (>= 4.8.6)
-
net8.0
- Oracle.ManagedDataAccess (>= 23.5.1)
- Oracle.ManagedDataAccess.Core (>= 23.5.1)
- System.Data.SqlClient (>= 4.8.6)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ASql:
Package | Downloads |
---|---|
Serilog.Sinks.Database
Serilog sink that writes in one of these five databases (SqlServer, Oracle, MySql, PostgreSQL, Sqlite) |
GitHub repositories
This package is not used by any popular GitHub repositories.