createBlob metodu
java.sql.Blob nesnesi döner.
array
Örnek
Şöyle yaparız.
Şöyle yaparız.
Örnek
Şöyle yaparız.
Şöyle yaparız.
java.sql.Blob nesnesi döner.
array
Örnek
Şöyle yaparız.
Session session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
byte[] bFile = /* load image into byte array */;
Blob image = Hibernate.getLobCreator(session).createBlob(bFile);
/* ? Your actions with Blob ? */
session.getTransaction().commit();
ÖrnekŞöyle yaparız.
Session currentSession = getSessionFactory().getCurrentSession();
Blob blob = Hibernate.getLobCreator(currentSession).createBlob(new byte[0]);
OutputStream setBinaryStream = blob.setBinaryStream(1);
Utils.fastChannelCopy(input, setBinaryStream);
setBinaryStream.close();
FileÖrnek
Şöyle yaparız.
Session session = sessionFactory.getCurrentSession();
File file = new File(filePath);
Blob blob = Hibernate.getLobCreator(session).createBlob(
new FileInputStream(file), file.length());
InputStreamŞöyle yaparız.
Blob blob = Hibernate.getLobCreator(currentSession)
.createBlob(new SelfClosingInputStream(inputStream), size);
Hiç yorum yok:
Yorum Gönder