This commit is contained in:
김선우
2025-01-27 20:35:11 +09:00
parent e48d7aa763
commit c18418bed0
3 changed files with 4 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ class JDBC4ResultSetTest {
}
@Test
void resultSet_close_test() throws Exception {
void close_resultSet_test() throws Exception {
stmt.executeUpdate("CREATE TABLE users (id INT PRIMARY KEY, username TEXT);");
stmt.executeUpdate("INSERT INTO users VALUES (2, 'seonwoo');");
stmt.executeQuery("SELECT * FROM users");