Skip to content

eseunghwan/DotSQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


DotSQL
Integrated Database-Helper for .NET


Available for:
  • .NET Standard 2.0
  • .NET 6.0+

Supported Platforms:
  • Windows 10+ (x86, amd64, arm64)
  • Linux Distos (amd64, arm64)
  • OSX 11+ (amd64, arm64)

Supported Databases:
  • MySQL, MariaDB (MySQL Family)
  • SQLite (amd64 only on Linux, OSX)




Install

dotnet add package DotSQL
# or specific version
dotnet add package DotSQL --version {version}


Usage

  • Sequentials
using DotSQL.Builders.Sequential;
using DotSQL.Engines;

var engine = new SequentialEngine(new MariadbBuilder {
    UserID = "{UserID}", Password = "{Password}",
    Host = "{Host}", Port = {Port},
    Database = "{Database}"
});
var result = engine.Execute("{query}");
// use ExecuteAsync method also.
var result = await engine.ExecuteAsync("{query}");

result.AsRecord(); // to List of Dictionary
result.AsDict(); // to Dictionary of String and List
result.AsJson(); // to Json, Format of Dict and Record
result.AsDataFrame(); // to Pandas.NET.Dataframe
result.AsTable(); // to System.Data.DataTable
result.AsModel<{ModelClass}>(); // to List of ModelClass


ToDo

  • MSSQL Support
    • Cause no Windows machines
  • Non-Sequential Support

About

Integrated Database-Helper for .NET

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages