SelenoDB
Release 2.0
Chart Advanced
Faq

Can I run my own SQL queries?

Sure, just follow these steps:
  1. Install the mysql client for MySQL 5.0 or any later version
  2. To log into the database run the following command from a terminal:
            mysql -u anonymous -h www.selenodb.org -D selenodb -p
            
  3. Hit enter when prompted for a password
  4. Design your SQL query (the database schema may prove useful)
  5. Run your SQL query (you may not be able to save the query results in your local machine)
  6. Exit the database server with this command:
            quit;
            
  7. To save the query results in a local file run the same SQL query directly from the terminal:
            mysql -u anonymous -h www.selenodb.org -D selenodb -p -e "your query here" -N > your_local_file
            
Chart Advanced