Watch The Superbowl online

watch superbowl live

super bowl

Watch The Superbowl online

SuperBowl

live superbowl stream

live superbowl stream

watch superbowl live

watch superbowl online

watch superbowl online


Java tips: get last inserted autoincrement fields

To get last inserted autoincrement fields using JDBC you should write something like this:

ResultSet resultSet = statement.getGeneratedKeys();
int newId=0;
if ( resultSet != null && resultSet.next() )
{
newId = resultSet.getInt(1);
}

And don’t forget to add Statement.RETURN_GENERATED_KEYS parameter when create statement.


You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.