Domanda

using spring jdbc I have the update() convenience method for inserting data in the DB.

So I don't need anymore the PreparedStatement stuff??

Is that correct? Or there are situation where I still may need those statements?

È stato utile?

Soluzione

You may want to use a PreparedStatement for performance reasons if you had some SQL that was being executed repeatedly. A PreparedStatement also allows for clean parameter substitution within the SQL (rather than doing string concatenation).

Otherwise, for quick and simple insert/update/delete statements, then the convenience JdbcTemplate.update(String) methods may be your best choice.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top