[EMAIL PROTECTED] wrote: > that I need that is missing is Blob support in some way or another via
As Rod mentioned, binary objects are supported, just not through the Blob interface. Use ResultSet.getBytes() and PreparedStatement.setBytes() to pass arbitrary byte[] arrays. With the aid of java.io.ByteArray*Stream it should take about 10 lines of glue to move your streams in and out of SQLite. If you want to compile the driver yourself, just download the source tarball, extract the contents and type "make". If you're on windows, you will have to install Cygwin. d --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
