I have a bunch of *.frm, *.myd and *.myi files, which are a MySQL database store.
I need to extract the data kept in these files, but I do not have a MySQL database engine at my disposal.
Is there a tool or library, which can do this?
Please, do not suggest installing the database engine (be it MySQL or MariaDB or other MySQL forks). My question is specific about extracting the data without the full blown database engine. In essence, I am looking for an embedded database engine, which can be distributed with my code and which demands no installation.
I am not looking into doing complex queries, I just need to fetch all the data from one or two particular tables.
Thanks.
EDIT
I am aware of http://dev.mysql.com/doc/refman/5.0/en/libmysqld.html, but I do not understand how to download it. What is the licensing for commercial usage? Should I download and install the full blown database to get hold on the libmysqld files (headers, lib + dll)? Even though I do not need the full database? In short, it creates more questions than answers. I am still looking for an advice.