MYSQL?

Discussion in 'Plugin Development' started by BeefySticks, Oct 14, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    BeefySticks

    So pretty much I've been working at the same level of bukkit coding for a while now and I feel that its time to expand. I want to learn MySQL for bukkit. Would anyone know where I should start learning? Thanks for reading!

    - BeefySticks

    [​IMG]
     
  2. Offline

    mythbusterma

    BeefySticks

    Make a simple plugin that uses a database, if you're not familiar with SQL, W3Schools has a pretty good tutorial on how to use SQL here.

    A quick note, SQL is a specification, a language, in the same way Java is. MySQL is a specific implementation of the specification, so you are learning SQL, not MySQL (although there are some features that are MySQL specific). Simply using the JDBC will allow you to connect to the server from within your Java code, and a quick Google on how to use that is sufficient. Remember that SQL queries should be done asynchronously as they take a non-determinate amount of time.
     
    BeefySticks likes this.
  3. Offline

    BeefySticks

Thread Status:
Not open for further replies.

Share This Page