FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. marktoddy
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 1
    • Controversial 0
    • Groups 0

    marktoddy

    @marktoddy

    2
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    marktoddy Unfollow Follow

    Best posts made by marktoddy

    • RE: No suitable driver found for jdbc:mysql://localhost:3306/login?...

      The reason you got this error is because you forgot to register your java mysql jdbc driver with the application.

      Should be like this:

      Class.forName("com.mysql.jdbc.Driver");
      

      This forces the driver to register itself, so that Java knows how to handle those database connection strings.

      You'll have to read the manual on your specific mysql jdbc driver to find the exact string to place inside the the Class.forName("...") parameter.

      posted in General Discussion
      M
      marktoddy

    Latest posts made by marktoddy

    • RE: No suitable driver found for jdbc:mysql://localhost:3306/login?...

      The reason you got this error is because you forgot to register your java mysql jdbc driver with the application.

      Should be like this:

      Class.forName("com.mysql.jdbc.Driver");
      

      This forces the driver to register itself, so that Java knows how to handle those database connection strings.

      You'll have to read the manual on your specific mysql jdbc driver to find the exact string to place inside the the Class.forName("...") parameter.

      posted in General Discussion
      M
      marktoddy