Reputation: 1776
Is there any local MySQL database which I can create on my system, just like the localhost we run on our system.
I never thought of this situation since we have our beta servers and live servers with database already set up in our offices.
I am creating an app on my own, that's why I need to setup a local db of mine.
Upvotes: 0
Views: 170
Reputation: 8921
You can use WAMP (or LAMP on linux) which is an integrated web development environment giving you access to your own LOCAL SQL databases accessible through your own machine's localhost. You will have full control to be able to create tables and administrate it. I am currently doing that myself
Upvotes: 1