Can I build a resultset from a file in Java?
I don't have much experience working with resultsets, but as ResultSet is an interface, I guess I could implement it to work with a file as a backend开发者_运维技巧. Is this nonsense? Is there any solution already given for my problem?
It seems like there already is a Csv2JDBC project, that may contain at least an example implementation of ResultSet.
HSQL also provides support for interpreting csv files as ResultSet
s.
精彩评论