Prequel.QueryEngine 0.1.2

dotnet add package Prequel.QueryEngine --version 0.1.2                
NuGet\Install-Package Prequel.QueryEngine -Version 0.1.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="Prequel.QueryEngine" Version="0.1.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Prequel.QueryEngine --version 0.1.2                
#r "nuget: Prequel.QueryEngine, 0.1.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 Prequel.QueryEngine as a Cake Addin
#addin nuget:?package=Prequel.QueryEngine&version=0.1.2

// Install Prequel.QueryEngine as a Cake Tool
#tool nuget:?package=Prequel.QueryEngine&version=0.1.2                

Prequel - C# SQL Query Engine

NuGet Status CD

Prequel is a SQL query engine built in C#. The goal of this project is to demonstrate how query engines are built, and to bring a query engine to the .NET community.

The project contains a step-by-step overview explaining how database query engines are built. The project is also available as a NuGet package and can be integrated into your project to support querying virtually any source where data can be collected.

The project contains several example data sources including CSV, Avro, Parquet, JSON, MS Sql, etc.. Adding new data sources is trivial and allows any data source to be queried with SQL, even querying data across disparate sources (e.g. join JSON to CSV or tables in a RDBMS instance).

πŸš€ Getting Started

Open the source code in your IDE of choice. Set the Prequel.Console as the startup project and/or compile the project and run. The sample project will run example SQL queries and output the results to the console.

  • Visual Studio, Rider - Set Prequel.Console as the startup project and run the project

  • VS Code - Use the included launch profile, run from the "RUN AND DEBUG" window

  • CLI - Open a terminal to the projects root

    cd src/Tests/Prequel.Console
    dotnet run
    

NuGet

dotnet add package Prequel.QueryEngine

What is a Query Engine?

A query engine is software that interprets a query (Structured Query Language) and interacts with a data source to manipulate the underlying data. Take a look at the full project overview for details on how every part of a query engine works.

✨ Features

  • 🀲 Simple: Query engines are not simple by nature. However this project uses the lowest common denominator approach to standardize unrelated data sources and data types (e.g. JSON vs CSV).
  • 🧩 Extensible: Plug in any data source. All runtime data is queried from your data source under your control.
  • πŸ’΅ Caching: In-memory and durable caching options make it simple to control how and when your data source is read.
  • πŸ“– Open Source: All code and features are available, transparent, and free to use.
  • 🏎️ Performant: Queries are optimized before execution with minimum-data-needed approach to reading data. Only the data required is read from data sources, even across unrelated sources.
  • πŸ”Ž Metrics: Profiling is built into the engine.

SQL Support

  • SELECT
  • * Wildcards
  • Scalar values
  • JOIN - inner/right/left/full/cross
  • GROUP BY
  • HAVING
  • UNION
  • LIMIT
  • LIKE, ILIKE substring comparisions
  • IN, NOT IN list comparisions
  • Subqueries
  • Aggregations - min/max/stddev/etc...
  • Math opperations
  • CAST functions
  • EXPLAIN plans
  • EXCLUDE/EXCEPT - Not yet implemented
  • INSERT, UPDATE, DROP operations

Motivation

This project contains a full overview of how query engines are built. Part of the goal with this project is to demonstrate the mechanics of a query engine. Chances are you use some form of database, BI tool, or ETL process as part of your daily development. While the code here is fully functional, it’s also academic in the sense that it gives a full picture of how data is gathered, aggregated, sorted, filtered, and so on, by your favorite data engine. Whether Postgres, MySql, BigQuery, Snowflake, or any of the dozens of database systems or cloud-hosted data platforms.

Contribution

Contributions are what make open-source work. We greatly appreciate any contributions. Thank you for being a part of the community! πŸ₯°

Sponsorship

If you find Prequel useful, or the tutorial helpful, please consider sponsoring us. Your support will help the project continue to grow.

β†’ Your Name Here ← if you become a sponsor πŸ‘.

<a href="https://buymeacoffee.com/tylerbrinks" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" ></a>

Other Projects

C# SqlParser - SQL Grammar Parser

License

MIT

Product Compatible and additional computed target framework versions.
.NET 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. 
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
0.1.2 29 12/2/2024
0.1.2-release0000 26 12/2/2024
0.1.1 46 11/29/2024
0.1.1-release0000 37 11/29/2024
0.1.0 38 11/29/2024