Whats the difference between 2 databases?

USAFRet

Illustrious
Moderator
Visual Studio is an IDE, not a database.
But Visual Studio uses, by default, MS SQL Server. Either Express or the full package. It can, however, use just about any compliant database backend.

MySQL is just another database backend. Like Oracle, Postgres, etc, etc.
 

Beanstine3

Honorable
Nov 7, 2013
4
0
10,510


I was meaning the "service-based" database that you can use in visual basic.

Which would be a better/easier database to use?
 

Ijack

Distinguished
There is quite a good explanation here of the difference between local and service-based database: http://techbystep.blogspot.co.uk/2009/03/how-to-connect-to-database-using-visual.html

If your application is a standalone one that will be used by only one client at a time then a local database would be best. If you have multiple clients, or are accessing data from a centralized database, then service-based is the appropriate choice.
 

Beanstine3

Honorable
Nov 7, 2013
4
0
10,510


I am going to need a server-based databased that can be accessed by multiple users. Is MySQL a server-based database?