0

I want to use csv as a database in C language to execute some sql commands for filtration. Just like CSV-jdbc api is there in Java. Is there any way to do this???

1 Answers1

2

SQLite would fit perfectly in your case ! You don't want an external database and you want to use it easily in C. So SQLite is the thing that you need !

Here is the doc : http://www.sqlite.org/c3ref/intro.html
And the list of functions : http://www.sqlite.org/c3ref/funclist.html

Nicolas Charvoz
  • 1,509
  • 15
  • 41