Ubah string koneksi Anda untuk membuatnya terhubung ke database yang tepat di localhost
conn = DriverManager.getConnection("jdbc:mysql://localhost/employees?user=root&password=");
Atau Anda dapat menentukan jalur "penuh" ke tabel, yaitu database.tablename
:
sql = "SELECT id, first, last, age FROM employees.employees";