Overview
SQLite tool allows you to query and manage SQLite databases. No server required - perfect for local development and embedded applications.Installation
Quick Start
Usage with Agent
Available Methods
query(sql)
Execute a SQL query.execute(sql)
Execute a SQL statement (INSERT, UPDATE, DELETE, CREATE).list_tables()
List all tables in the database.Configuration Options
Function-Based Usage
In-Memory Database
Error Handling
Common Errors
| Error | Cause | Solution |
|---|---|---|
no such table | Table doesn’t exist | Create table first |
database is locked | Concurrent access | Close other connections |
disk I/O error | File permission issue | Check file permissions |
Related Tools
- PostgreSQL - PostgreSQL database
- MySQL - MySQL database
- DuckDB - Analytics database

