[EMAIL PROTECTED] wrote: > My preferred mode of implementation would either be to use > getBinaryStream/setBinaryStream, or the getBlob/setBlob. (Almost all > of my applications that I would like to provide ports for are either > Postgres or Oracle related.) getBinaryStream/setBinaryStream would be > great for now, and I see the least overhead involved in implementing it > (from looking at the DB.java class) vs. the java.sql.Blob interface.
Wil, why can't you use ResultSet.getBytes and PreparedStatement.setBytes to put large objects in and out of the database? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SQLiteJDBC" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups-beta.google.com/group/sqlitejdbc?hl=en -~----------~----~----~----~------~----~------~--~---
