IGNQuery.MySql 1.2.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package IGNQuery.MySql --version 1.2.2
NuGet\Install-Package IGNQuery.MySql -Version 1.2.2
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="IGNQuery.MySql" Version="1.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IGNQuery.MySql --version 1.2.2
#r "nuget: IGNQuery.MySql, 1.2.2"
#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 IGNQuery.MySql as a Cake Addin
#addin nuget:?package=IGNQuery.MySql&version=1.2.2

// Install IGNQuery.MySql as a Cake Tool
#tool nuget:?package=IGNQuery.MySql&version=1.2.2

Igrok-Net-Query

Query building library based on ADO .NET functionality

Parts of project are licnesed under gplv3 others are under MIT please refer to source code and to license file in each project to see under which license it is licensed. This project will be split into multiple nuget packages for convinience of use and to be able to use multiple licenses.

Base class library will be under MIT. Database specific implementations will be licensed under separate licenses

  • MYSQL: GPLV3 to be compatible with community version and connector for mysql
  • Microsoft SQL server: MIT license

If you want to build dev version with prerelease package versions, please add bin\releae folder of your IGNQuery project to package sources. Otherwise you may run into problems with package versions.

If you need to use this package it is advisable to use official nuget packages from NuGet.org

To be able to run this software from version 1.2.2 and up you need to have java 6 or higher installed on your machine

How to use

Disclaimer: We will not send you emails except for service emails (account activation, any resets or any emails that are resulting from actions you do on https://igrok-net.org), email is just used to identify if user have right to use this library.

Create table query exemple:

var dataProvider = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
                Create().
                Table("test", true, new List<TableColumnConfiguration>()
                {
                    TableColumnConfiguration.FromConfig("id",typeof(long),0,true,true,true,null),
                    TableColumnConfiguration.FromConfig("userId",typeof(long),0,true,false,false,null),
                    TableColumnConfiguration.FromConfig("name",typeof(string),255,false,false,false,null),
                    TableColumnConfiguration.FromConfig("testDate",typeof(DateTime),0,false,false,false,null)
                }).
                Go();
dataProvider.Execute(query);

Create database query exemple:

var dataProvider = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
                Create().
                Database("testdb", true).
                Go()
dataProvider.Execute(query);

Alter query exemples:

var dataProvider = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
    Alter("ignusers", true).
    AddColumn(TableColumnConfiguration.FromConfig("test1", typeof(string), 25, false, false, false, ""),true).
    AddColumn(TableColumnConfiguration.FromConfig("test2", typeof(string), 25, false, false, false, ""),true).
    Go();
dataProvider.Execute(query);
query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
    Alter("ignusers", true).
    AlterColumn(TableColumnConfiguration.FromConfig("test1", typeof(string), 25, false, false, false, ""),true).
    Go();
dataProvider.Execute(query);
query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
    Alter("ignusers", true).
    DropColumn("test1", true).
    Drop("test2", true).
    Go();
dataProvider.Execute(query);
var dataDriver = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var altquery = IGNQueriable.Begin("youremail@domain.com", dataDriver, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
    Alter("ignusers", true).
    AddColumn(TableColumnConfiguration.FromConfig("test1", typeof(string), 25, false, false, false, ""),true).
    Add(TableColumnConfiguration.FromConfig("test2", typeof(string), 25, false, false, false, ""),true).
    Go();
dataDriver.Execute(altquery);

Delete query exemple:


var dataProvider = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
    Delete().
    From("ignusers", true).
    Go();

dataProvider.Execute(query);

Insert query exemple:

var dataProvider = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
        Insert().
        Into("ignusers", new List<string>() { "mail" }, true).
        Values(new List<int> { 0 }).
        Go();

dataProvider.ExecuteWithParameters(query, new List<IGNParameterValue>
    {
        IGNParameterValue.FromConfig(0, "youremail@domain.com")
    });

Drop query exemple:

var dataProvider = new MySqlDataDriver("youremail@domain.com", "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX");
var query = IGNQueriable.Begin("youremail@domain.com", dataProvider, "XXXXX-XXXXX-XXXXX-XXXXX-XXXXX").
    Drop().
    Table("ignusers", true).
    Go();

dataProvider.Execute(query);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 was computed.  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 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 net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.2.3.1 73 1/28/2024
1.2.3 107 12/20/2023
1.2.2.1 175 9/9/2023
1.2.2 277 12/25/2022
1.2.1 375 10/16/2022
1.2.0 416 5/15/2022
1.1.10.22 403 5/14/2022
1.1.10.13 400 5/1/2022
1.1.10.12 394 5/1/2022
1.1.10.8 407 4/3/2022
1.1.10.7 413 2/19/2022
1.1.10.3 429 1/22/2022
1.1.10 301 1/1/2022
1.1.10-alpha4 141 1/1/2022
1.1.10-alpha3 1,120 11/28/2021
1.1.10-alpha2 298 9/12/2021
1.1.9 389 4/5/2021
1.1.8 403 3/14/2021
1.1.7.22 414 3/14/2021
1.1.7.21 471 3/14/2021
1.1.7.6 456 3/13/2021
1.1.7.4 454 3/13/2021
1.1.7.2 474 3/11/2021
1.1.7.1 509 3/8/2021
1.1.7 386 3/7/2021
1.1.6.1 432 3/7/2021
1.1.6 391 3/7/2021
1.1.2 425 1/24/2021
1.1.1 427 1/24/2021
1.1.0 456 1/23/2021
1.0.9 426 1/9/2021
1.0.8 399 1/9/2021
1.0.7 487 12/8/2020
1.0.6 480 12/7/2020
1.0.5 470 12/7/2020
1.0.4 428 12/7/2020
1.0.3 538 12/6/2020
1.0.2 476 12/2/2020
1.0.1 464 12/2/2020
1.0.0 473 12/2/2020