MySQL GUI
This might be a dumb question, but for those of you on planetscale, what tool do you use to view your database data. During development I just used prisma studio, and perhaps that's ok in prod too? Or is there another tool that people use to view the data in the db?
6 Replies
I know some people that use beekeperstudio: https://www.beekeeperstudio.io/
but for my usecases prisma studio seems fine
ah nice, ty for sharing. Yeah i am not sure why, but using prisma studio on a production db felt off to me... I think it my just be me using prisma studio so much during development, that seeing it might put my brain in development branch mode and i might run a command or delete something i shouldnt in a prod. enviroment
yeah, you can see it like that lol
anyways beekeeper seems to have a more heavy querying UI/UX, so might give you the feel of analyzing production's database
i downloaded beekeeper, it seems solid and was generally what i was looking for, thanks!
And just to add to your skepticism, Prisma Studio has severely let me down in production, to the point I had to use PlanetScale's terminal.
When you have old data that breaks the new database, Prisma Studio simply won't let you see and/or edit it because it queries with the ORM which will pass down the error from the query/edit
Thank you for this
mysql workbench