It looks like the the feature for storing files outside of the database is going away (i.e. h2.lobInDatabase<http://www.h2database.com/javadoc/org/h2/constant/SysProperties.html#h2.lobInDatabase>=false). Assuming that feature goes away, if one plans to store a lot of BLOBs (several gigabytes total) in H2, which is the better approach:
1. Storing the content in a BLOB column and use the database file split feature?<http://www.h2database.com/html/advanced.html#limits_limitations> 2. Storing the content yourself on the filesystem and link the content to a path column on a database table? -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/h2-database. For more options, visit https://groups.google.com/groups/opt_out.
