vote up 2 vote down star

I have no database experience and want to get started with MySQL. I have often seen it paired with Php and other various languages. Which language should I use in conjunction with MySQL? I am most familiar with Java currently, but I am very willing to learn a new language that works well with MySQL.

flag

70% accept rate

2 Answers

vote up 6 vote down check

Just about any language is fine. Chose the language independently depending on what you want to do.

If you are just building programs to learn how DBs work, please consider languages that don't need a lot of glue code. Candidates: C#, python, perl, ruby, php, Java. C++ has too much glue code needed to be a good choice to use as a DB learning language.

Sticking with Java since you already know it is a fine choice.


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

http://sqlcourse.com/

and

http://sqlcourse2.com/

They have built in query interpreters.

link|flag
Which languages have little glue code? – Anton Mar 8 at 19:32
You can write a program in Python that talks to the DB in just a few lines of code for example. – Brian R. Bondy Mar 8 at 19:33
vote up 6 vote down

There's nothing wrong with using Java and MySQL together.

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

link|flag
+1, having to learn a language + MySQL is not the best approach. If you know Java, stay with it. – Joachim Sauer Mar 8 at 19:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.