awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

Awesome GitHub RepositoriesNative Language Querying

Executing database queries using host language operators and expressions instead of raw SQL strings.

Distinct from Query Languages: Distinct from Natural Language Querying (AI) and standard SQL Query Languages.

Explore 3 awesome GitHub repositories matching data & databases · Native Language Querying. Refine with filters or upvote what's useful.

Awesome Native Language Querying GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • tencent/wcdbAvatar de Tencent

    Tencent/wcdb

    11,502Ver en GitHub↗

    WCDB is a cross-platform storage layer and embedded database engine that serves as a framework for SQLite. It functions as an object relational mapper, linking application classes to database tables to enable data operations via objects rather than raw queries. The project is distinguished by an integrated encryption layer for securing data at rest and a full-text search engine that uses language-specific tokenizers for text lookups. It also features transparent field compression to reduce storage footprints and a connection-pooling model to coordinate simultaneous read and write operations a

    Executes database queries and filters using native language integration to eliminate raw string concatenation.

    Candroiddatabaseios
    Ver en GitHub↗11,502
  • apache/pinotAvatar de apache

    apache/pinot

    6,098Ver en GitHub↗

    Pinot is a distributed, columnar analytical database designed for high-concurrency, low-latency query processing. It functions as a real-time OLAP datastore, enabling interactive, user-facing analytics by ingesting and querying massive datasets from both streaming and batch sources. The system architecture relies on a centralized controller for cluster coordination and a distributed segment-based storage model to ensure horizontal scalability. The platform distinguishes itself through a hybrid ingestion pipeline that unifies real-time event streams and historical batch data into a single quer

    Enables programmatic data access through native language drivers for query execution.

    Java
    Ver en GitHub↗6,098
  • wemobiledev/articleAvatar de WeMobileDev

    WeMobileDev/article

    4,395Ver en GitHub↗

    This repository is a collection of technical knowledge and solutions focused on mobile application development, particularly for Android and iOS platforms. It covers a wide range of practical engineering challenges, including hotfix and patching techniques, database management and repair, network communication, logging, and video processing. The content is presented as shared knowledge, documenting real-world problems and their implementations. The project provides detailed guidance on applying hotfixes to running Android applications through multiple methods, such as class replacement, full

    Provides a C++ query builder that constructs SQL conditions and sorting through type-safe function calls.

    Ver en GitHub↗4,395
  1. Home
  2. Data & Databases
  3. Native Language Querying

Explorar subetiquetas

  • C++ Query BuildersBuilds SQL queries through type-safe C++ function calls instead of string concatenation, leveraging IDE code completion and compiler checks. **Distinct from Native Language Querying:** Distinct from Native Language Querying: focuses on C++-specific query construction with compile-time safety, not general host-language querying.
  • SQL Expression WrappingIntegrating raw SQL strings into a programmatic expression tree for further manipulation. **Distinct from Native Language Querying:** Distinct from Native Language Querying: focuses on incorporating raw SQL into a lazy pipeline rather than avoiding SQL entirely.