public static void pCreateAuthor(Connection connection) {
Routines.pCreateAuthorByName(create(connection), "William", "Shakespeare");
}
public static void pCreateAuthorByName(Connection connection, String firstName, String lastName) {
H2Factory create = create(connection);
create.insertInto(T_AUTHOR)
.set(TAuthor.ID, create.select(max(TAuthor.ID).add(1)).from(T_AUTHOR).<Integer>asField())
.set(TAuthor.FIRST_NAME, firstName)
.set(TAuthor.LAST_NAME, lastName)
.execute();
}