views:

86

answers:

2

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?

+7  A: 

It seems like there already is a Csv2JDBC project, that may contain at least an example implementation of ResultSet.

Riduidel
+1  A: 

HSQL also provides support for interpreting csv files as ResultSets.

Adamski