move to new computer


This isn't a bug but how do you go about moving the feedreader database to another computer? I've invested quite a bit of time configuring feedreader mysql and I'd like to move it to my new computer. Thanks!

It's possible with MySQL

It's possible with MySQL tools. Basically you should use mysqldump to dump feedreader database to SQL file (this is text file) and in second computer you should first create feedreader database manually and then do something like:

c:\>mysql feedreader

perfect, thanks!

on old computer:

mysqldump -u root -p feedreader > feedreader.sql

on new computer:

mysqladmin -u root -p create feedreader
mysql -u root -p feedreader < feedreader.sql