2 Repos
Capability to mix high-level ORM mapping with raw SQL statements in a single operation.
Distinct from Raw SQL Execution: Specifically mixes ORM-style object mapping with raw SQL, whereas the parent is general raw SQL execution.
Explore 2 awesome GitHub repositories matching data & databases · Hybrid Object-SQL Execution. Refine with filters or upvote what's useful.
xorm is a relational mapper and object-relational mapping tool for Go. It translates Go structures into SQL queries and maps database rows back into native objects, providing a multi-dialect database driver that supports MySQL, PostgreSQL, SQLite, Oracle, SQL Server, and TiDB. The project features a read-write splitting manager that routes modification requests to a primary database and read requests to replicas. It includes a database schema synchronizer to automatically align table structures and indexes with application data models, as well as a fluent SQL query builder for constructing co
Combines high-level object mapping operations with raw SQL statements within a single execution flow.
Ibis is a portable Python dataframe library and multi-backend query engine that provides a unified interface for executing data transformations across diverse compute engines. It functions as a Python SQL expression compiler and dialect transpiler, allowing users to define data logic once and execute it across cloud warehouses, embedded databases, and distributed clusters without rewriting code. The project distinguishes itself through a database backend abstraction that decouples transformation logic from the underlying execution engine. It enables polyglot data workflows by mixing raw SQL s
Enables mixing raw SQL strings with programmatic dataframe operations within a single pipeline.