Pages

H2 Embedded Database | H2 Gömülü veritabanı


H2 veritabanı da derby, hsqldb, mysql, postgresql veritabanları gibi projelerimizde kullanabiliriz. Diğer veritabanlarına göre hızlı ve küçük boyutu sayesinde daha fazla ilgi çekmektedir. 


 Detaylı karşılaştırma için resme tıklayın.

Nasıl H2 veritabanı bağlantısını yaparız?

Connection connection = null;
   try {
      JdbcDataSource dataSource = new JdbcDataSource();
 
      dataSource.setURL("jdbc:h2:./deneme");
      dataSource.setUser("");// isteğe bağlı
      dataSource.setPassword("");// isteğe bağlı
      connection = dataSource.getConnection();
   } catch (SQLException e) {
 e.printStackTrace();
   }


 
* Nasıl tablo oluştururuz?

CREATE TABLE IF NOT EXISTS isim (
   id INT AUTO_INCREMENT(1,1) PRIMARY KEY, 
   ad VARCHAR(50)
);
 
 
Aşağıdaki linkler ile kendi sitesinden gerekli bilgileri alabiliriz. 
SQL yazım kuralları
Veri tipleri
Dökümantasyon

H2 Download
 
(Alıntı) 
Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 yorum:

Yorum Gönder