Is there a library / tool for querying MySQL data files (MyISAM / InnoDB) without a server? (SQLite method)

Often I want to directly query MySQL data without starting the server or without access to the server (but having the rights to read and write files).

Is there a tool, or maybe even a library around querying MySQL data files, how is this possible with SQLite? I am specifically looking for InnoDB and MyISAM support. Performance is not a factor.

I have no knowledge of the internal functions of MySQL, but I believe it should be possible and not too difficult to get specific code?

Thanks for any suggestions!

+3
source share
2 answers

MySQL , . libmysqld. C/++. , API C/++.

MySQL Embedded

+1

, /dev . , , , SQL :

mysqldump -u root -pPASSWORD DATABASENAME TABLENAME > table.sql

HSQLDB - Java, , .sql. ...

+1

Source: https://habr.com/ru/post/1740396/


All Articles