Prepared Statement - CI/CD用語集の定義
Prepared statement は、解析とプランニングのために SQL テンプレートを一度送信し、その後に異なるバインドパラメータで何度も実行します。再解析を避け、SQL インジェクションを防ぎます。
関連ガイド
Query Plan - CI/CD Glossary DefinitionA query plan is the step-by-step strategy a database picks to execute a SQL statement - which indexes, joins,…
Connection Pooling - CI/CD Glossary DefinitionConnection pooling reuses a fixed set of open database connections across requests, avoiding a new TCP and au…
ORM - CI/CD Glossary DefinitionAn ORM maps database rows to in-memory objects so developers query in their host language. It speeds work but…