I use this command within the MariaDB command prompt to import databases on my local development machine, and it works quite well:
source C:/path/to/databaseFile/dbname.sql;
Is there a similar command for exporting?
Use mysqldump command line, i.e.
mysqldump -u username -p databasename > yourfilename.sql
tsutton yes, but I was hoping for a similarly simple command like the one I use for importing.
musicianaire Don't think so.