Re: How to store images into HypersonicSQL database?



You should use PreparedStatement. For instance, "insert into yourtable
(imageColumn) values(?)", and PreparedStatement.setBinaryStream or
PreparedStatement.setBytes function.

.