Entering a New Row into a Database Table This example enters a row containing a string, an integer, and a floating point number into the table called ``mytable''. try { Statement stmt = connection.createStatement(); stmt.executeUpdate("INSERT INTO mytable VALUES ('Patrick Chan', 123, 1.23)"); connection.close(); } catch (SQLException e) { }