statement 썸네일형 리스트형 JDBC Statement, PreparedStatement, CallableStatement 차이 InterfacesRecommended UseStatementUse for general-purpose access to your database. Useful when you are using static SQL statements at runtime. The Statement interface cannot accept parameters.PreparedStatementUse when you plan to use the SQL statements many times. The PreparedStatement interface accepts input parameters at runtime.CallableStatementUse when you want to access database stored proc.. 이전 1 다음