You can check the my.ini file to find out where the data folder is.
Usually there is a folder {mysqlDirectory} / data p>
MySQL Data Warehouse:
Commands.frm Commands.myd Commands.myi
* .Frm files contain table definitions. Your * .myi files are MyISAM index files. Your * .myd files contain table data.
Edit / Update . Due to the interest shown in the question, there is more information that appears in the comments.
On Windows 8.1, MySQL databases are stored (by default) here: C:\ProgramData\MySQL\MySQL Server 5.6\data
The C: \ ProgramData folder is a hidden folder, so you must enter it in the address of Windows Explorer to get there. In this folder, the database data is called /{database_name_folder}/{database_tables_and_files} .
For example,
C:\ProgramData\MySQL\MySQL Server 5.6\data\mydatabase\mytable.frm C:\ProgramData\MySQL\MySQL Server 5.6\data\mydatabase\mytable.ibd
Thanks @ marty-mcgee for this content
Udan Oct 18 '12 at 5:27 2012-10-18 05:27
source share