Which language should be used in conjunction with MySQL?

I have no experience with databases and you want to start working with MySQL. I often saw how it combined with Php and other languages. Which language should be used in conjunction with MySQL? Currently, I am most familiar with Java, but I really want to learn a new language that works well with MySQL.

+3
source share
3 answers

Almost any language is fine. Choose your own language depending on what you want to do.

If you're just building programs to find out how DB works, consider languages โ€‹โ€‹that don't need a lot of glue code. Candidates: C #, python, perl, ruby, php, Java. C ++ has too much gluing code to be a good choice for use as a DB learning language.

Sticking to Java, as you already know, is a great choice.


If you just want to get some experience with SQL in general, I would highly recommend the following tutorials:

http://sqlcourse.com/

and

http://sqlcourse2.com/

They are built into query interpreters.

+8
source

There is nothing wrong with using Java and MySQL.

Get the MySQL JDBC driver and start coding! Here is a tutorial .

+6
source

PhP, , . , , . .

0

Source: https://habr.com/ru/post/1704413/


All Articles