Java Veritabanına Bağlanmak Ve Select Operasyonu Örnek Kodu
Java ile Veri tabanına eriştiğimiz ve select operasyonunu yaparak seçilen tablodaki verileri ekrana yazdırığımız bir örnek kod. MysQl bağlantısı için kullandığımız örnek kod ise alt kısımdadır onu bir class içerisine alıp kolaylık sağladık.
Connection connection = null; DbHelper helper = new DbHelper(); Statement statement = null; ResultSet resultSet; try { connection = helper.getConnection(); statement = connection.createStatement(); resultSet = statement.executeQuery("select Code,Name,Continent,Region from country"); ArrayList<Country> countries = new ArrayList<Country>(); while (resultSet.next()) { countries.add(new Country( resultSet.getString("Code"), resultSet.getString("Name"), resultSet.getString("Continent"), resultSet.getString("Region"))); } System.out.println(countries.size()); } catch (SQLException exception) { helper.showErrorMessage(exception); } finally { { connection.close(); } }
MySQL Bağlantı
import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class DbHelper { private String userName= "root"; private String password="12345"; private String dbUrl="jdbc:mysql://localhost:3306/world?useSSL=false&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"; public Connection getConnection() throws SQLException { return DriverManager.getConnection(dbUrl,userName,password); } public void showErrorMessage(SQLException exception){ System.out.println("Error : " + exception.getMessage()); System.out.println("Hata Kodu: " + exception.getErrorCode()); } }
Yorumlar
Yorum Gönder
Yorumunuz için teşekkür ederiz, en kısa sürede geri dönüş yapacağız.