1 रिपॉजिटरी
Structured tree representations of SQL queries used for engine-agnostic transformation and compilation.
Distinct from Abstract Syntax Tree Parsing: Distinct from general AST parsing: focuses specifically on SQL query structures for cross-dialect compilation.
Explore 1 awesome GitHub repository matching software engineering & architecture · SQL Abstract Syntax Trees. Refine with filters or upvote what's useful.
Sea-query is a database abstraction library for Rust that provides a fluent builder pattern for constructing type-safe SQL queries. It functions as a framework for defining and managing database schemas and queries through code, allowing developers to generate syntactically valid statements for multiple database engines without relying on manual string concatenation. The library distinguishes itself by using an abstract syntax tree to model queries, which enables engine-agnostic transformations and compilation into specific SQL dialects. This architecture supports cross-database portability,
Models queries as structured trees to enable engine-agnostic transformations and compilation into specific SQL dialects.