選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Database Guidelines (Access, SQLite, SQL Server, Postgres)
- MS Access (.mdb / .accdb):
- Use correct date literals (
#YYYY-MM-DD#).
- Escape field names with square brackets (e.g.,
[Order Date]).
- Be cautious with concurrent write operations and file locking.
- Cross-Engine Dialect Awareness:
- Access:
TOP n, IIF(), string concatenation with &
- SQLite:
LIMIT n, IFNULL(), string concatenation with ||
- SQL Server:
TOP (n), ISNULL(), CONCAT()
- Postgres:
LIMIT n, COALESCE(), ||, boolean literals (TRUE/FALSE)
- Parameterization: Always use parameterized queries regardless of engine.
- Migrations: Every schema change must include a rollback/backward-compatibility note in the spec.