Kimberypalet
Kimberypalet

Reputation: 119

Is it possible to run a system with database without using xampp?

i am sorry if this is a dumb question. I am just curious.

Example i have a simple information system that save name, address , age etc. it save in database name called "info"

My question is, is it possible to run it without running the xampp ? example i am using vb.net and xampp and create informtion system.

Example i want to use it by 100 people. Do i need to tell them to install the xampp first and put the database there and run it to run the system ?? Or there are other way to do that.

Upvotes: 0

Views: 1065

Answers (1)

goudarziha
goudarziha

Reputation: 336

So depending if you want to host this database locally or over the internet via a remote server, you only need to host the database on a single machine in order to be accessed.

So if you want to host this database on your local computer, you can run on xampp, but other users would need to be able to access your computer in order to reach the database.

On the opposite end, you can have a remote server, serve the database (I am assuming a MySQL server). Which you wouldn't really want to run on xampp, but you definitely can.

Upvotes: 1

Related Questions