|
You know, I never bothered looking up how to do this because I was able to solve my problem with an SQL query, but I think there is a way to do what you want. Use the execute(String sql, int autoGeneratedKeys) method. You can then call getGeneratedKeys(), which returns a ResultSet. Let me know if it works for you.
|