Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to cubrid-cookbook
# Contributing to cubrid-cookbook-python

Thank you for your interest in contributing! This document provides guidelines
and instructions for contributing to the project.
Expand Down Expand Up @@ -156,5 +156,5 @@ For new example requests, describe the use case and framework.

## Questions?

Open a [GitHub Discussion](https://github.com/cubrid-lab/cubrid-cookbook/discussions)
or file an [issue](https://github.com/cubrid-lab/cubrid-cookbook/issues).
Open a [GitHub Discussion](https://github.com/cubrid-lab/cubrid-cookbook-python/discussions)
or file an [issue](https://github.com/cubrid-lab/cubrid-cookbook-python/issues).
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## Links

- 📋 [GitHub Milestones](https://github.com/cubrid-lab/cubrid-cookbook/milestones)
- 📋 [GitHub Milestones](https://github.com/cubrid-lab/cubrid-cookbook-python/milestones)
- 🗂️ [Org Project Board](https://github.com/orgs/cubrid-lab/projects/2)
- 🌐 [Ecosystem Roadmap](https://github.com/cubrid-lab/.github/blob/main/ROADMAP.md)

Expand Down
2 changes: 1 addition & 1 deletion SUPPORT_MATRIX.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Tested combinations of CUBRID server, Python version, and driver/framework.
|-----------|---------|--------|
| pycubrid | ≥ 1.3.2 | ✅ Required |
| sqlalchemy-cubrid | ≥ 1.0 | ✅ Required for SQLAlchemy recipes |
| SQLAlchemy | 2.0–2.1 | ✅ |
| SQLAlchemy | 2.0–2.2 | ✅ |
| Flask | ≥ 3.0 | ✅ |
| Flask-SQLAlchemy | ≥ 3.1 | ✅ |
| FastAPI | ≥ 0.100 | ✅ |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""04_prepared.py — Parameterized queries and batch operations.
"""04_parameterized.py — Parameterized queries and batch operations.
Demonstrates:
- Parameterized queries (qmark style: ?)
Expand Down
2 changes: 1 addition & 1 deletion fundamentals/parameterized-queries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ qmark (`?`) placeholder style.

| Recipe | Description |
|--------|-------------|
| [`04_prepared.py`](04_prepared.py) | Parameterized queries, batch operations with `executemany()` |
| [`04_parameterized.py`](04_parameterized.py) | Parameterized queries, batch operations with `executemany()` |

## Why parameterized queries?

Expand Down
Loading