Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a "phpmyadmin" for Ruby on Rails? [closed]

Tags:

Something like phpmyadmin but for Ruby on Rails ?

I need an app to administrate easily my mysql database.. It's for myself. A GUI for Mysql database

like image 706
sparkle Avatar asked Dec 18 '11 20:12

sparkle


People also ask

What database is used with Ruby on Rails?

Rails comes with built-in support for SQLite, which is a lightweight serverless database application. While a busy production environment may overload SQLite, it works well for development and testing. Rails defaults to using a SQLite database when creating a new project, but you can always change it later.

Does Ruby on Rails work with MySQL?

Ruby on Rails uses SQLite as its database by default, but it also supports the use of MySQL.


2 Answers

finally, I hope, I can help you. This is my last project, because it was something what I missed for longer time.

https://github.com/robinbortlik/db_explorer

It is called DB explorer, it is application like phpMyAdmin, but written in Ruby on Rails. It is not exactly like, phpMyAdmin, because it not allow you so many configuration options. It is simple solution for browsing your DB, searching and editing data. You can connect many databases and different types like MySQL, PostgeSQL and Sqlite3.

Lets, try it, and let me know if there is something wrong, or something what would be great to have implemented.

Here are some screenshots

like image 83
Robin Bortlík Avatar answered Jan 01 '23 21:01

Robin Bortlík


I don't know any equivalent of phpmyadmin in RoR but if you just want to consult the database used by a RoR application, you could still use phpmyadmin. It doesn't matter, the database is accessed by a RoR application.

like image 32
tomferon Avatar answered Jan 01 '23 21:01

tomferon