I have installed dbr on my web host using dbr's own objects database.
How do I connect with another database ?
I have installed dbr on my web host using dbr's own objects database.
How do I connect with another database ?
Grant to myDBR's database user account a read access to the databases you wish to report from and use following notation in reports:
select column
from mydatabase.mytable
--
myDBR Team
The database I want to read from is "TEST". So what you mean is that I log in to that database and grant the user I created in MYDBR read access. Is that correct ? How do I do this - thanks
Use MySQL grant command to do this:
GRANT SELECT ON TEST.* TO username@'localhost' IDENTIFIED BY 'password';
See more info at MySQL Manuals.
--
myDBR Team
You must log in to post.