Info
Version: | 1.2.0 |
Author(s): | Michele Rosica |
Last Update: | Friday, October 9, 2020 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | http://michelerosica.altervista.org/portfolio/ |
NuGet Url: | https://www.nuget.org/packages/SDO_dotNET |
Install
Install-Package SDO_dotNET
dotnet add package SDO_dotNET
paket add SDO_dotNET
SDO_dotNET Download (Unzip the "nupkg" after downloading)
Dependencies
- MySql.Data(>= 8.0.21)
- System.Data.SQLite.Core(>= 1.0.113.1)
Tags
The SQL Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in .NET.
Each database driver that implements the PDO interface can expose database-specific features as regular extension functions.
Note that you cannot perform any database functions using the PDO extension by itself; you must use a database-specific PDO driver to access a database server.
PDO provides a data-access abstraction layer, which means that, regardless of which database you're using, you use the same functions to issue queries and fetch data.
PDO does not provide a database abstraction; it doesn't rewrite SQL or emulate missing features. You should use a full-blown abstraction layer if you need that facility.
The library is currently compiled at .Net 4.0 so it should work with any application running .Net 4.0 and above.