2 مستودعات
Tools that transform SQL statements into typed definitions and functions in a target programming language.
Distinct from SQL Generators: Focuses on generating application code from SQL, whereas SQL Generators typically generate SQL scripts from models
Explore 2 awesome GitHub repositories matching data & databases · SQL-to-Language Generators. Refine with filters or upvote what's useful.
sqlc is a SQL compiler and code generator that creates type-safe database client code from raw SQL queries. It transforms SQL statements into typed definitions and functions, eliminating the need for manual row mapping between database results and application structures. The tool ensures compile-time safety by validating SQL queries against the database schema before the application is run. This workflow integrates the database schema directly into the application code, deriving types from the underlying SQL definitions to prevent runtime errors. The system utilizes AST-based query analysis
Transforms raw SQL statements into typed definitions and functions for various programming languages.
Tivi is a cross-platform application for discovering and tracking television shows, built with Kotlin Multiplatform and Compose Multiplatform to share its user interface across Android, iOS, and desktop platforms. The app follows the Model-View-Intent (MVI) architecture pattern, where user actions are modelled as sealed class intents that reduce into a single immutable state object, ensuring predictable and unidirectional data flow managed through Kotlin coroutines and StateFlow. The application uses Hilt for compile-time dependency injection and SQLDelight for type-safe local data storage, c
Generates type-safe Kotlin APIs from hand-written SQL statements using SQLDelight.