Install ADBC (Arrow Database Connectivity) drivers with dbc. Use when the user wants to install database drivers and connect to databases.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
npx agent-skills-cli listSkill Instructions
name: dbc description: Install ADBC (Arrow Database Connectivity) drivers with dbc. Use when the user wants to install database drivers and connect to databases. license: Apache-2.0 metadata: author: Columnar version: "1.0"
dbc Skill
Install and manage drivers for the user with the dbc command line program.
Installing dbc
If the user does not have dbc available, try to install it for them.
Prefer installing it with with these commands, in order of preference, if the tool is available:
- If
uvis available:uv tool install dbc - If
pipxis available:pipx install dbc - Otherwise install dbc with the appropriate command for their operating system:
- macOS & Linux: Run
curl -LsSf https://dbc.columnar.tech/install.sh | sh - Windows: Run
powershell -ExecutionPolicy ByPass -c "irm https://dbc.columnar.tech/install.ps1 | iex"
- macOS & Linux: Run
Most Important Commands
dbc install <driver>- Install a driver (e.g.,dbc install snowflake)dbc search [pattern]- Search for a driver using a pattern (e.g.,dbc search sql). Also lists installed drivers.dbc info <driver>- Get driver details
Run dbc --help to learn about other commands.
Project Workflow
For reproducible driver management, prefer using this workflow over dbc install:
dbc init- Create adbc.tomlfiledbc add <driver>- Add drivers to the list (supports version constraints likedbc add "postgresql>=13.0")dbc sync- Install all drivers and createdbc.lock
Using Drivers
Drivers installed with dbc must be used with an ADBC driver manager. dbc cannot load a driver or query a data source directly. Don't install drivers from any other source like PyPI, prefer drivers installed with dbc always.
Resources for using drivers:
- How to load drivers and connect to databases: https://github.com/columnar-tech/adbc-quickstarts
- Python Cookbooks for ADBC: https://arrow.apache.org/adbc/current/python/recipe/index.html
More by NeverSight
View allPlanning for React web UI implementation with component design focus
Vue 3 debugging and error handling for runtime errors, warnings, async failures, and SSR/hydration issues. Use when diagnosing or fixing Vue issues.
从多个文献内容中系统化提取并生成结构化课程。支持 1-100+ 个文献文件,智能识别内容类型(转录/文献/混合),自动进行主题识别、课程大纲生成、总览与章节内容撰写。采用可选模块架构,适应不同类型内容(理论/实践/案例/历史等)。本技能应在用户需要将多个文献整理为系统化课程、生成学习材料、处理转录内容、或从复杂文稿中提取结构化内容时使用。
Discovers and indexes Python code in skills, enabling cross-skill imports. Use when importing functions from other skills or analyzing skill codebases.
