Prepared Statement - CI/CD Glossary Definition
A prepared statement sends a SQL template once for parsing and planning, then executes it many times with different bound parameters. It avoids re-parsing and prevents SQL injection.
Related guides
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…