728x90
Interfaces | Recommended Use |
---|---|
Statement | Use for general-purpose access to your database. Useful when you are using static SQL statements at runtime. The Statement interface cannot accept parameters. |
PreparedStatement | Use when you plan to use the SQL statements many times. The PreparedStatement interface accepts input parameters at runtime. |
CallableStatement | Use when you want to access database stored procedures. The CallableStatement interface can also accept runtime input parameters. |
참고 : http://www.tutorialspoint.com/jdbc/jdbc-statements.htm
반응형