JDBC Prepared Statement
JDBC Prepared Statement
JDBC prepared statement address the following requirements:
Creating parametrised statements such that data for parameters can be substituted dynamically.
Creating statements involving data values that cannot always be represented as character strings.
Pre-compiling SQL statements to avoid repeated compiling of the same SQL statements.
In most cases, you may not have the…
View On WordPress

















