Carbunql 0.2.4
See the version list below for details.
dotnet add package Carbunql --version 0.2.4
NuGet\Install-Package Carbunql -Version 0.2.4
<PackageReference Include="Carbunql" Version="0.2.4" />
paket add Carbunql --version 0.2.4
#r "nuget: Carbunql, 0.2.4"
// Install Carbunql as a Cake Addin #addin nuget:?package=Carbunql&version=0.2.4 // Install Carbunql as a Cake Tool #tool nuget:?package=Carbunql&version=0.2.4
Carbunql
A lightweight library for parsing and building select queries. SQL can be rebuilt dynamically.
Demo
You can experience parsing results online on the demo site.
https://mk3008.github.io/Carbunql
Features
- Supports parsing select queries without using a DBMS
- DBMS agnostic
- Supports processing select queries
Constraints
- Minimum grammar check
- Only select queries can be parsed
- Comment is removed
Getting started
PM> Install-Package Carbunql
Parse
Just pass the select query string to the constructor of the SelectQuery class.
using Carbunql;
var text = @"
select a.column_1 as col1, a.column_2 as col2
from table_a as a
left join table_b as b on a.id = b.table_a_id
where b.table_a_id is null
";
var sq = new SelectQuery(text);
string sql = sq.ToCommand().CommandText;
SELECT
a.column_1 AS col1,
a.column_2 AS col2
FROM
table_a AS a
LEFT JOIN table_b AS b ON a.id = b.table_a_id
WHERE
b.table_a_id IS null
Building
You can build using the SelectQuery class.
using Carbunql;
using Carbunql.Building;
var sq = new SelectQuery();
// from clause
var (from, a) = sq.From("table_a").As("a");
var b = from.InnerJoin("table_b").As("b").On(a, "table_a_id");
var c = from.LeftJoin("table_c").As("c").On(b, "table_b_id");
// select clause
sq.Select(a, "id").As("a_id");
sq.Select(b, "table_a_id").As("b_id");
// where clause
sq.Where(a, "id").Equal(":id").And(b, "is_visible").True().And(c, "table_b_id").IsNull();
// parameter
sq.Parameters.Add(":id", 1);
string sql = sq.ToCommand().CommandText;
/*
:id = 1
*/
SELECT
a.id AS a_id,
b.table_a_id AS b_id
FROM
table_a AS a
INNER JOIN table_b AS b ON a.table_a_id = b.table_a_id
LEFT JOIN table_c AS c ON b.table_b_id = c.table_b_id
WHERE
a.id = :id
AND b.is_visible = true
AND c.table_b_id IS null
Build subquery
using Carbunql;
using Carbunql.Building;
var sq = new SelectQuery();
sq.From(() =>
{
var x = new SelectQuery();
x.From("table_a").As("a");
x.SelectAll();
return x;
}).As("b");
sq.SelectAll();
string sql = sq.ToCommand().CommandText;
SELECT
*
FROM
(
SELECT
*
FROM
table_a AS a
) AS b
Build condition
using Carbunql;
using Carbunql.Building;
using Carbunql.Values;
var sq = new SelectQuery();
var (from, a) = sq.From("table_a").As("a");
sq.SelectAll();
sq.Where(() =>
{
// a.id = 1 and a.value = 2
var c1 = new ColumnValue(a, "id").Equal(1);
c1.And(a, "value").Equal(2));
// a.value = 3 and a.value = 4
var c2 = new ColumnValue(a, "id").Equal(3);
c2.And(a, "value").Equal(4);
// (
// (a.id = 1 and a.value = 2)
// or
// (a.value = 3 and a.value = 4)
// )
return c1.ToGroup().Or(c2.ToGroup()).ToGroup();
});
string sql = sq.ToCommand().CommandText;
SELECT
*
FROM
table_a AS a
WHERE
((a.id = 1 AND a.value = 2) OR (a.id = 3 AND a.value = 4))
Build exists
using Carbunql;
using Carbunql.Building;
var sq = new SelectQuery();
var (from, a) = sq.From("table_a").As("a");
sq.SelectAll();
sq.Where(() =>
{
var x = new SelectQuery();
var (_, b) = x.From("table_b").As("b");
x.SelectAll();
x.Where(b, "id").Equal(a, "id");
return x.ToExists();
});
sq.Where(() =>
{
var x = new SelectQuery();
var (_, b) = x.From("table_b").As("b");
x.SelectAll();
x.Where(b, "id").Equal(a, "id");
return x.ToNotExists();
});
string sql = sq.ToCommand().CommandText;
SELECT
*
FROM
table_a AS a
WHERE
EXISTS (
SELECT
*
FROM
table_b AS b
WHERE
b.id = a.id
)
AND NOT EXISTS (
SELECT
*
FROM
table_b AS b
WHERE
b.id = a.id
)
Build CTE
using Carbunql;
using Carbunql.Building;
var sq = new SelectQuery();
// a as (select * from table_a)
var ct_a = sq.With(() =>
{
var q = new SelectQuery();
q.From("table_a");
q.SelectAll();
return q;
}).As("a");
// b as (select * from table_b)
var ct_b = sq.With(() =>
{
var q = new SelectQuery();
q.From("table_b");
q.SelectAll();
return q;
}).As("b");
// select * from a iner join b a.id = b.id
var (from, a) = sq.From(ct_a).As("a");
from.InnerJoin(ct_b).On(a, "id");
sq.SelectAll();
string sql = sq.ToCommand().CommandText;
WITH
a AS (
SELECT
*
FROM
table_a
),
b AS (
SELECT
*
FROM
table_b
)
SELECT
*
FROM
a
INNER JOIN b ON a.id = b.id
Referenced Libraries
ZString / MIT License
https://github.com/Cysharp/ZString
https://github.com/Cysharp/ZString/blob/master/LICENSE
Copyright (c) 2020 Cysharp, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Dapper / Apache License 2.0
https://github.com/DapperLib/Dapper
https://github.com/DapperLib/Dapper/blob/main/License.txt
The Dapper library and tools are licenced under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
The Dapper logo is copyright Marc Gravell 2021 onwards; it is fine to use the Dapper logo when referencing the Dapper library and utilities, but the Dapper logo (including derivatives) must not be used in a way that misrepresents an external product or library as being affiliated or endorsed with Dapper. For example, you must not use the Dapper logo as the package icon on your own external tool (even if it uses Dapper internally), without written permission. If in doubt: ask.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net6.0
- ZString (>= 2.5.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Carbunql:
Package | Downloads |
---|---|
RedOrb
simply object relation mapping framework. |
|
Carbunql.Dapper
A utility for using the query class generated by Carbunql with Dapper as it is. |
|
Carbunql.Postgres
Type-safe SelectQuery Builder using Expression.For Postgres. |
|
Carbunql.TypeSafe
This library allows for TypeSafe SQL building, enables independent definition and reuse of subqueries and CTEs, and supports unit testing without the need for tables. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
0.8.14 | 80 | 10/30/2024 | |
0.8.13.1 | 438 | 10/21/2024 | |
0.8.13 | 121 | 10/20/2024 | |
0.8.12 | 107 | 10/3/2024 | |
0.8.11 | 479 | 9/1/2024 | |
0.8.10 | 178 | 8/18/2024 | |
0.8.9.1 | 127 | 8/18/2024 | |
0.8.9 | 126 | 8/15/2024 | |
0.8.8 | 130 | 8/9/2024 | |
0.8.7 | 74 | 8/3/2024 | |
0.8.6 | 1,482 | 7/24/2024 | |
0.8.5 | 99 | 7/17/2024 | |
0.8.4.1 | 125 | 7/13/2024 | |
0.7.8.1 | 163 | 5/12/2024 | |
0.7.8 | 133 | 5/1/2024 | |
0.7.7 | 167 | 4/17/2024 | |
0.7.6 | 146 | 4/1/2024 | |
0.7.5 | 115 | 3/30/2024 | |
0.7.4 | 135 | 3/26/2024 | |
0.7.3 | 133 | 3/24/2024 | |
0.7.2 | 344 | 3/15/2024 | |
0.7.1 | 1,880 | 3/9/2024 | |
0.6.4 | 151 | 2/25/2024 | |
0.6.3 | 161 | 2/20/2024 | |
0.6.2 | 142 | 2/20/2024 | |
0.6.1.1 | 306 | 2/13/2024 | |
0.5.7 | 195 | 1/20/2024 | |
0.5.6 | 585 | 12/3/2023 | |
0.5.5 | 167 | 11/26/2023 | |
0.5.4 | 154 | 11/25/2023 | |
0.5.3 | 146 | 11/25/2023 | |
0.5.2 | 150 | 11/20/2023 | |
0.5.1 | 233 | 11/14/2023 | |
0.5.0 | 202 | 9/25/2023 | |
0.4.5 | 443 | 9/21/2023 | |
0.4.4 | 154 | 9/17/2023 | |
0.4.3 | 158 | 9/17/2023 | |
0.4.2 | 166 | 9/16/2023 | |
0.4.1 | 177 | 9/7/2023 | |
0.3.2 | 291 | 8/26/2023 | |
0.3.1 | 165 | 8/25/2023 | |
0.3.0 | 252 | 8/17/2023 | |
0.2.8 | 344 | 7/11/2023 | |
0.2.7 | 210 | 6/20/2023 | |
0.2.6 | 205 | 5/10/2023 | |
0.2.5 | 211 | 4/30/2023 | |
0.2.4 | 223 | 4/17/2023 | |
0.2.3 | 419 | 3/30/2023 | |
0.2.2 | 227 | 3/30/2023 | |
0.2.1 | 270 | 3/25/2023 | |
0.2.0 | 271 | 3/24/2023 | |
0.1.1 | 278 | 3/5/2023 | |
0.1.0 | 315 | 2/28/2023 |