awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

Awesome GitHub RepositoriesDelete Operations

Capabilities for removing records from database tables.

Distinguishing note: No existing candidates for delete operations.

Explore 6 awesome GitHub repositories matching data & databases · Delete Operations. Refine with filters or upvote what's useful.

Awesome Delete Operations GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • drizzle-team/drizzle-ormAvatar de drizzle-team

    drizzle-team/drizzle-orm

    34,835Voir sur GitHub↗

    Drizzle ORM is a TypeScript-native database toolkit providing type-safe SQL query building, schema management, and automated migrations across PostgreSQL, MySQL, SQLite, and SingleStore.

    Supports type-safe deletion of records from database tables.

    TypeScriptormtypescriptsql
    Voir sur GitHub↗34,835
  • ankitects/ankiAvatar de ankitects

    ankitects/anki

    28,571Voir sur GitHub↗

    Anki is a cross-platform flashcard management system designed to optimize long-term memory retention through spaced-repetition learning. It functions as a digital learning assistant that uses active recall practice and automated scheduling algorithms to determine the ideal timing for card reviews based on individual performance history. The core system relies on a local relational database to ensure data persistence and portability, while supporting complex study workflows through flexible note-type schema modeling and template-driven content rendering. The platform distinguishes itself throu

    Maintains logs of removed items to allow for the restoration of accidentally deleted study content.

    Rust
    Voir sur GitHub↗28,571
  • oldj/switchhostsAvatar de oldj

    oldj/SwitchHosts

    26,826Voir sur GitHub↗

    SwitchHosts is a desktop application for managing and switching between multiple sets of system hosts file entries. It functions as a network environment switcher and an operating system hosts file manager, allowing users to map domain names to specific IP addresses for local DNS management. The tool distinguishes itself through remote hosts synchronization, which fetches and updates local data from remote URLs on a defined schedule. It enables rapid configuration toggling via a main window and system tray menu to swap between different network routing sets instantly. The application include

    Moves removed host entries to a temporary storage area for restoration or permanent deletion.

    TypeScriptelectronhostshostseditor
    Voir sur GitHub↗26,826
  • containerd/containerdAvatar de containerd

    containerd/containerd

    20,369Voir sur GitHub↗

    Containerd is a daemon-based container runtime that manages the complete lifecycle of containers on a host system. It functions as a core orchestration backend, handling image distribution, storage, and process execution while adhering to industry-standard specifications for container execution and configuration. The project is distinguished by its modular, plugin-based architecture, which allows for the extension of storage, runtime, and networking capabilities without requiring a full daemon recompile. It utilizes a shim-based execution model to delegate low-level operations, ensuring isola

    Performs immediate resource removal and cleanup to ensure system state consistency.

    Gocncfcontainerdcontainers
    Voir sur GitHub↗20,369
  • klaussinani/taskbookAvatar de klaussinani

    klaussinani/taskbook

    9,327Voir sur GitHub↗

    Taskbook is a command-line task manager and local plain-text organizer that provides a terminal user interface for managing to-do lists, project boards, and notes. It functions as a CLI Kanban board, allowing users to group actionable items and informational snippets into categorized boards. The tool emphasizes local data organization by storing information in local files with customizable storage paths. It supports a Kanban-style workflow where tasks are organized into boards and tracked through pending, in-progress, and complete states. The system includes capabilities for prioritizing tas

    Automatically saves removed entries to an archive to facilitate future inspection or restoration.

    JavaScript
    Voir sur GitHub↗9,327
  • abel533/mapperAvatar de abel533

    abel533/Mapper

    7,370Voir sur GitHub↗

    Mapper is a MyBatis-specific library that provides annotation-driven object-relational mapping, enabling single-table CRUD operations without writing SQL or XML. It uses Java reflection and field-level annotations to map entity fields to database columns, configure primary key generation strategies, and generate mapper interfaces and model classes from database schemas. The library distinguishes itself through several practical capabilities. It includes a safe operation guard that blocks delete and update calls lacking query conditions, preventing accidental full-table modifications. Its exam

    Blocks delete calls that lack query conditions, throwing an exception to avoid accidental full-table deletion.

    Javamappermybatismybatis-plugin
    Voir sur GitHub↗7,370
  1. Home
  2. Data & Databases
  3. Delete Operations

Explorer les sous-tags

  • Deletion LogsMaintains records of removed data entries to facilitate auditing or recovery. **Distinct from Delete Operations:** Distinct from general delete operations: focuses on the logging of removed records rather than the act of deletion itself.
  • GuardedBlocks delete calls that lack query conditions, throwing an exception to avoid accidental full-table deletion. **Distinct from Delete Operations:** Distinct from Delete Operations: adds a safety guard that prevents deletion without query conditions.