Giriş
Şu satırı dahil ederiz
import com.hazelcast.sql.SqlService;
Kalıtım şöyle
SqlService
InternalSqlService
MissingSqlService
SqlServiceImpl
SqlClientService : HZ Client kullanır
executeUpdate metodu
ROW döndürmeyen SQL cümlelerini çalıştırır
Örnek
Şöyle yaparız
SqlService.executeUpdate("CREATE MAPPING my_table DATA CONNECTION FOO");
iterator metodu
Örnek
Eğer SELECT COUNT(*) gibi tek bir sütün dönen SQL kullandıysak şöyle yaparız
HazelcastInstance client = ...;
Long count = client.getSql().execute("...").iterator().next().getObject(0);
Hiç yorum yok:
Yorum Gönder