Lakshay Dulani
Lakshay Dulani

Reputation: 1776

Can MySQL be set up locally on a development computer?

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

Answers (1)

rcbevans
rcbevans

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

WAMP

Upvotes: 1

Related Questions