Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
connection = DriverManager.getConnection(URL);
PreparedStatement
stmt = connection.prepareStatement("INSERT INTO TBL_KOMMENTAR " +
"(KMT_USR_ID, KMT_GRT_ID, KMT_TEXT) " +
"VALUES (?, ?, ?)", PreparedStatement.RETURN_GENERATED_KEYS);
stmt.setInt(1, userID);
stmt.setInt(2, gerichtID);
stmt.setString(3, comment);
stmt.executeUpdate();
ResultSet rs = stmt.getGeneratedKeys();
while(rs.next()) {
int test = rs.getInt(1);}