Can I build a result set from a file in Java?

I do not have much experience with result sets, but since ResultSet is an interface, I assume that I can implement it to work with a file as a backend. This is nonsense? Is there any solution for my problem?

+6
java jdbc csv text-files resultset
source share
2 answers

It seems that the Csv2JDBC project already exists, which may contain at least an example implementation of ResultSet.

+9
source share

HSQL also provides support for interpreting csv files as ResultSet s.

+2
source share

All Articles