A SQL query identifier
A demonstration of using AIGNE Framework and Sqlite MCP Server to interact with a SQLite database
飞书多维表格 MCP 服务器
飞书MCP服务器,提供多维表格API工具
Model Context Protocol (MCP) server for Microsoft SQL Server - enterprise-ready schema discovery, profiling, and safe data operations
Shared core library for MSSQL MCP servers - tools, config, routing, and server harness
A dirt-simple SQL client abstraction (currently) supporting PostgreSQL, MySQL and SQLite.
A demonstration of using AIGNE Framework and Sqlite MCP Server to interact with a SQLite database
| Tool | Description | |---------|---------------------------------------------------------------------------
Read-only MCP server for Microsoft SQL Server - schema discovery, profiling, and safe querying without write operations
PgSQL Output Plugin for @pastash/pastash
飞书MCP服务器,提供多维表格API工具
MCP server for AWS DynamoDB with fine-grained tool control
飞书MCP服务器,提供多维表格API工具
A simple directory/file based database app.
A deepstream.io storage connector for use with deepstream
Model Context Protocol (MCP) server for SQLite database operations
解析 mysql create table 语句,用于通过建表语句生成 model 代码文件。
MCP server for AiTables — lets Claude Code read and manage your AiTables databases
fast lightweight rest-api builder
This module is creating manipulating JSON array. That is create table, insert, update, select and delete. useful for small data
Shared core library for MSSQL MCP servers - tools, config, routing, and server harness (fork of @connorbritain/mssql-mcp-core)
MCP server for Microsoft SQL Server with read and data operations - no DDL/schema changes
A repo acts as the source of truth for the new nano's structure, configs, data etc.
This OpenAPI specification is a part of the Lance namespace specification. It contains 2 parts: The `components/schemas`, `components/responses`, `components/examples`, `tags` sections define the request and response shape for each operation in a Lance Namespace across all implementations. See https://lancedb.github.io/lance-namespace/spec/operations for more details. The `servers`, `security`, `paths`, `components/parameters` sections are for the Lance REST Namespace implementation, which defines a complete REST server that can work with Lance datasets. See https://lancedb.github.io/lance-namespace/spec/impls/rest for more details.
An easy-to-use, zero-downtime schema migration tool for Postgres
A lightweight wrapper for database operations based on sqlx, enabling fast CRUD operations.
Efficient MySQL SQL Generation / 高效 MySQL SQL 生成
Derive map of struct/field to SQLite table/column. Generate const/fn for create-table, insert, select, update.
SQLite DB file finder
Database migration engine for Nautilus ORM
Generic schema migration system for switchy_database
Macro-based Rust ORM focused on developer ergonomics
Macro-based Rust ORM focused on developer ergonomics
Macro-based Rust ORM focused on developer ergonomics
Macro-based Rust ORM focused on developer ergonomics
Analyze and inspect CREATE TABLE SQL statements and translate across databases.
Use Mysql AUTO_INCREMENT to support key value cache, which should be combined by an integer and string. It means to reduce the database storage size, and improve query performance. All cache will store in process memory, and will never be expired, until the process dies, so the less kvs you use, the better performance you will get. BTW, 100,000 general strings use 10MB memory. Some relatived articles: http://en.wikipedia.org/wiki/Correlation_database Usage ------------------------------------------ ## setup ```ruby create_table :kv_browser_names, :options => 'ENGINE=MyISAM DEFAULT CHARSET=utf8' do |t| t.string :name t.timestamps end class KvBrowserName < ActiveRecord::Base include IdNameCache end ``` or ```ruby create_table :common_tag, :options => 'ENGINE=MyISAM DEFAULT CHARSET=utf8' do |t| t.integer :tagid t.string :tagname end class CommonTag < ActiveRecord::Base self.table_name = :common_tag self.primary_key = :tagid include IdNameCache; set_key_value :tagid, :tagname # include IdNameCache; set_key_value_without_create :tagid, :tagname # if you dont want create it automately end ``` ### use cases ```text ruby-1.9.3-rc1 :001 > QuizTag[1] QuizTag Load (0.3ms) SELECT `common_tag`.* FROM `common_tag` WHERE `common_tag`.`tagid` = 1 LIMIT 1 => "Android" ruby-1.9.3-rc1 :002 > QuizTag[1] => "Android" ruby-1.9.3-rc1 :003 > QuizTag['Android'] QuizTag Load (0.5ms) SELECT `common_tag`.* FROM `common_tag` WHERE `common_tag`.`tagname` = 'Android' LIMIT 1 => 1 ruby-1.9.3-rc1 :004 > QuizTag['Android'] => 1 ``` == Copyright MIT, David Chen at eoe.cn
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.