PreparedStatement in java
In this article, we will discuss about executing SQL statements using PreparedStatement.
PreparedStatement
PreparedStatement class is a subclass of Statement class. But, in many situations its favored over Statement because: – In some situations, it is more efficient compared to Statement – It can prevent SQL injection attack – It is helpful while preparing SQL queries involving…
View On WordPress















