Java
JDBC Fundamentals in Java
JDBC is the standard API for talking to a relational database from Java: a connection, a statement, and a result set.
Connecting Java applications to relational databases.
3 notes
JDBC is the standard API for talking to a relational database from Java: a connection, a statement, and a result set.
Concatenating input into SQL lets a caller rewrite your query. Bound parameters make that structurally impossible.
A transaction makes several statements succeed or fail together, and batching turns many round trips into one.