On 4 Apr 2010, at 9:47pm, Andreas Henningsson wrote: > So my question is. How do I store files in the database from Java? Is > it possible. I hope so. I don't want to change database. > Is there some other way to do this that work?
I don't know if your Java method of using SQLite allows this, but the normal way to store a long stream of bytes inside a SQLite database would be to define a column of type BLOB. So look up whatever you can about the use of BLOB columns. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

