awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

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

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • tencent/wcdbTencent 的头像

    Tencent/wcdb

    11,502在 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
    在 GitHub 上查看↗11,502
  • apache/pinotapache 的头像

    apache/pinot

    6,098在 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
    在 GitHub 上查看↗6,098
  • wemobiledev/articleWeMobileDev 的头像

    WeMobileDev/article

    4,395在 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.

    在 GitHub 上查看↗4,395
  1. Home
  2. Data & Databases
  3. Native Language Querying

探索子标签

  • 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.