IGNQuery.SqlServer
1.2.3.1
dotnet add package IGNQuery.SqlServer --version 1.2.3.1
NuGet\Install-Package IGNQuery.SqlServer -Version 1.2.3.1
<PackageReference Include="IGNQuery.SqlServer" Version="1.2.3.1" />
paket add IGNQuery.SqlServer --version 1.2.3.1
#r "nuget: IGNQuery.SqlServer, 1.2.3.1"
// Install IGNQuery.SqlServer as a Cake Addin #addin nuget:?package=IGNQuery.SqlServer&version=1.2.3.1 // Install IGNQuery.SqlServer as a Cake Tool #tool nuget:?package=IGNQuery.SqlServer&version=1.2.3.1
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 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 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. |
-
.NETFramework 4.0
- IGNQuery (>= 1.2.3.1)
-
.NETStandard 2.0
- IGNQuery (>= 1.2.3.1)
- System.Data.SqlClient (>= 4.8.6)
-
net8.0
- IGNQuery (>= 1.2.3.1)
- System.Data.SqlClient (>= 4.8.6)
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 | 139 | 1/28/2024 |
1.2.3 | 186 | 12/20/2023 |
1.2.2.1 | 177 | 9/9/2023 |
1.2.2 | 292 | 12/25/2022 |
1.2.1 | 386 | 10/16/2022 |
1.2.0 | 442 | 5/15/2022 |
1.1.10.22 | 402 | 5/14/2022 |
1.1.10.13 | 417 | 5/1/2022 |
1.1.10.12 | 394 | 5/1/2022 |
1.1.10.8 | 418 | 4/3/2022 |
1.1.10.7 | 460 | 2/19/2022 |
1.1.10.3 | 427 | 1/22/2022 |
1.1.10 | 329 | 1/1/2022 |
1.1.10-alpha4 | 189 | 1/1/2022 |
1.1.10-alpha3 | 1,160 | 11/28/2021 |
1.1.10-alpha2 | 313 | 9/12/2021 |
1.1.9 | 425 | 4/5/2021 |
1.1.8 | 427 | 3/14/2021 |
1.1.7.22 | 412 | 3/14/2021 |
1.1.7.21 | 440 | 3/14/2021 |
1.1.7.6 | 459 | 3/13/2021 |
1.1.7.4 | 492 | 3/13/2021 |
1.1.7.1 | 537 | 3/8/2021 |
1.1.7 | 426 | 3/7/2021 |
1.1.6.1 | 464 | 3/7/2021 |
1.1.4 | 431 | 1/24/2021 |
1.1.3 | 435 | 1/24/2021 |
1.1.2 | 486 | 1/23/2021 |
1.1.1 | 458 | 1/9/2021 |
1.1.0 | 441 | 1/9/2021 |
1.0.9 | 454 | 12/8/2020 |
1.0.8 | 502 | 12/7/2020 |
1.0.7 | 486 | 12/7/2020 |
1.0.6 | 489 | 12/7/2020 |
1.0.5 | 524 | 12/6/2020 |
1.0.4 | 453 | 12/2/2020 |
1.0.3 | 464 | 12/2/2020 |
1.0.2 | 481 | 12/2/2020 |
1.0.1 | 372 | 12/2/2020 |
1.0.0 | 403 | 12/2/2020 |