mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-04-09 03:02:26 -04:00
## Description Prebuilt tools for the sqlite - [x] `list_table` with simple and detailed(trigger,index,column) for each table - [x] `execute-sql` for executing any SQL statement for sqlite. - [x] added tests and done required changes in config. - [x] **Documentation update**:Done ## PR Checklist - [x] Make sure you reviewed [CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md) - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/langchain-google-alloydb-pg-python/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) - [x] Make sure to add `!` if this involves a breaking change 🛠️ Fixes: https://github.com/googleapis/genai-toolbox/issues/1226 --------- Co-authored-by: Averi Kitsch <akitsch@google.com>
81 lines
2.4 KiB
Markdown
81 lines
2.4 KiB
Markdown
---
|
|
title: "SQLite"
|
|
linkTitle: "SQLite"
|
|
type: docs
|
|
weight: 1
|
|
description: >
|
|
SQLite is a C-language library that implements a small, fast, self-contained,
|
|
high-reliability, full-featured, SQL database engine.
|
|
---
|
|
|
|
## About
|
|
|
|
[SQLite](https://sqlite.org/) is a software library that provides a relational
|
|
database management system. The lite in SQLite means lightweight in terms of
|
|
setup, database administration, and required resources.
|
|
|
|
SQLite has the following notable characteristics:
|
|
|
|
- Self-contained with no external dependencies
|
|
- Serverless - the SQLite library accesses its storage files directly
|
|
- Single database file that can be easily copied or moved
|
|
- Zero-configuration - no setup or administration needed
|
|
- Transactional with ACID properties
|
|
|
|
## Available Tools
|
|
|
|
- [`sqlite-sql`](../tools/sqlite/sqlite-sql.md)
|
|
Run SQL queries against a local SQLite database.
|
|
|
|
- [`sqlite-execute-sql`](../tools/sqlite/sqlite-execute-sql.md)
|
|
Run parameterized SQL statements in SQlite.
|
|
|
|
### Pre-built Configurations
|
|
|
|
- [SQLite using MCP](../../how-to/connect-ide/sqlite_mcp.md)
|
|
Connect your IDE to SQlite using Toolbox.
|
|
|
|
## Requirements
|
|
|
|
### Database File
|
|
|
|
You need a SQLite database file. This can be:
|
|
|
|
- An existing database file
|
|
- A path where a new database file should be created
|
|
- `:memory:` for an in-memory database
|
|
|
|
## Example
|
|
|
|
```yaml
|
|
sources:
|
|
my-sqlite-db:
|
|
kind: "sqlite"
|
|
database: "/path/to/database.db"
|
|
```
|
|
|
|
For an in-memory database:
|
|
|
|
```yaml
|
|
sources:
|
|
my-sqlite-memory-db:
|
|
kind: "sqlite"
|
|
database: ":memory:"
|
|
```
|
|
|
|
## Reference
|
|
|
|
### Configuration Fields
|
|
|
|
| **field** | **type** | **required** | **description** |
|
|
|-----------|:--------:|:------------:|---------------------------------------------------------------------------------------------------------------------|
|
|
| kind | string | true | Must be "sqlite". |
|
|
| database | string | true | Path to SQLite database file, or ":memory:" for an in-memory database. |
|
|
|
|
### Connection Properties
|
|
|
|
SQLite connections are configured with these defaults for optimal performance:
|
|
|
|
- `MaxOpenConns`: 1 (SQLite only supports one writer at a time)
|
|
- `MaxIdleConns`: 1
|