-1

I would like to start experimenting with a MySQL Data Base but I don't know where to start. I'm a C# dev and maybe there's something I'm missing but it just looks more complicated than I tought.

I would like to know the very basics of every steps. Starting from creating a first variable in a database, then access it.

Thank you for your help!

Maatskappy
  • 17
  • 3

1 Answers1

1

As a suggestion and quick overview I would take a look at:

http://www.wampserver.com/en/

This can host your local mySQL database.

Create your database following various tutorials such as:

http://www.mysqltutorial.org/basic-mysql-tutorial.aspx

Once you have a database you need to connect to it: How to set SQL Server connection string?

Then you can start reading and writing data from it:

How to read and print out data from mysql in c# http://zetcode.com/db/mysqlcsharptutorial/

Those are the basic steps you need to follow. Google each or take a look at the links provided and you should be able to follow for yourself.

Community
  • 1
  • 1
B Hawkins
  • 35
  • 2
  • 6