Statement
Each Statement is attached to a Connection.
Connection
Statement s = conn.createStatement();
Multiple Statements can be handled by a Connection.
Transactions are also handled by the Connection.
conn.commit();
All transactions are committed and all Statements are closed when a Connection closes.