I am failing to maria DB database 10.1 in XAMPP using eclipse oxygen with jdbc driver 5.1











up vote
0
down vote

favorite












I am getting this error:



com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Incorrect database name ' '


after running my code below.



Please help. My database is running in xampp version 3.22. I am using the j connector 5.1



    package connect;
import java.sql.*;
public class MY_Database {

public static void main(String args) {
// TODO Auto-generated method stub

String url = "jdbc:mysql://localhost:3306/ ";
String user = "root";
String password = "";
try
{
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection con= DriverManager.getConnection(url,user,password);
Statement stt = con.createStatement();

//Create and Save db

stt.execute("Create Database");
stt.execute("Use the test ");

//Create out table
stt.execute("DROP TABLE IF EXIST people");
stt.execute("CREATE TABLE people("
+"id BIGINT NOT NULL AUTO_INCREMENT,"
+"fname VARCHAR(25), "
+"lname VARCHAR (25),"
+"PRIMARY KEY (id)"
+
" )");
// ADD SOME ENTRIES
stt.execute("INSERT INTO people(fname , lname ) VALUES "+
"('Nathan','Tenderere') ('Praise ''Tenderere') ('Tadiwa
''Machona')");

// Get people with surname Tenderere
ResultSet res = stt.executeQuery("SELECT * FROM people WHERE lname =
'Tenderere' ");

while (res.next()) {
System.out.println(res.getString("fname")+""+
res.getString("lname") );
}
}
catch(Exception e)
{
e.printStackTrace();
}
}

}









share|improve this question




























    up vote
    0
    down vote

    favorite












    I am getting this error:



    com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Incorrect database name ' '


    after running my code below.



    Please help. My database is running in xampp version 3.22. I am using the j connector 5.1



        package connect;
    import java.sql.*;
    public class MY_Database {

    public static void main(String args) {
    // TODO Auto-generated method stub

    String url = "jdbc:mysql://localhost:3306/ ";
    String user = "root";
    String password = "";
    try
    {
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    Connection con= DriverManager.getConnection(url,user,password);
    Statement stt = con.createStatement();

    //Create and Save db

    stt.execute("Create Database");
    stt.execute("Use the test ");

    //Create out table
    stt.execute("DROP TABLE IF EXIST people");
    stt.execute("CREATE TABLE people("
    +"id BIGINT NOT NULL AUTO_INCREMENT,"
    +"fname VARCHAR(25), "
    +"lname VARCHAR (25),"
    +"PRIMARY KEY (id)"
    +
    " )");
    // ADD SOME ENTRIES
    stt.execute("INSERT INTO people(fname , lname ) VALUES "+
    "('Nathan','Tenderere') ('Praise ''Tenderere') ('Tadiwa
    ''Machona')");

    // Get people with surname Tenderere
    ResultSet res = stt.executeQuery("SELECT * FROM people WHERE lname =
    'Tenderere' ");

    while (res.next()) {
    System.out.println(res.getString("fname")+""+
    res.getString("lname") );
    }
    }
    catch(Exception e)
    {
    e.printStackTrace();
    }
    }

    }









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am getting this error:



      com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Incorrect database name ' '


      after running my code below.



      Please help. My database is running in xampp version 3.22. I am using the j connector 5.1



          package connect;
      import java.sql.*;
      public class MY_Database {

      public static void main(String args) {
      // TODO Auto-generated method stub

      String url = "jdbc:mysql://localhost:3306/ ";
      String user = "root";
      String password = "";
      try
      {
      Class.forName("com.mysql.jdbc.Driver").newInstance();
      Connection con= DriverManager.getConnection(url,user,password);
      Statement stt = con.createStatement();

      //Create and Save db

      stt.execute("Create Database");
      stt.execute("Use the test ");

      //Create out table
      stt.execute("DROP TABLE IF EXIST people");
      stt.execute("CREATE TABLE people("
      +"id BIGINT NOT NULL AUTO_INCREMENT,"
      +"fname VARCHAR(25), "
      +"lname VARCHAR (25),"
      +"PRIMARY KEY (id)"
      +
      " )");
      // ADD SOME ENTRIES
      stt.execute("INSERT INTO people(fname , lname ) VALUES "+
      "('Nathan','Tenderere') ('Praise ''Tenderere') ('Tadiwa
      ''Machona')");

      // Get people with surname Tenderere
      ResultSet res = stt.executeQuery("SELECT * FROM people WHERE lname =
      'Tenderere' ");

      while (res.next()) {
      System.out.println(res.getString("fname")+""+
      res.getString("lname") );
      }
      }
      catch(Exception e)
      {
      e.printStackTrace();
      }
      }

      }









      share|improve this question















      I am getting this error:



      com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Incorrect database name ' '


      after running my code below.



      Please help. My database is running in xampp version 3.22. I am using the j connector 5.1



          package connect;
      import java.sql.*;
      public class MY_Database {

      public static void main(String args) {
      // TODO Auto-generated method stub

      String url = "jdbc:mysql://localhost:3306/ ";
      String user = "root";
      String password = "";
      try
      {
      Class.forName("com.mysql.jdbc.Driver").newInstance();
      Connection con= DriverManager.getConnection(url,user,password);
      Statement stt = con.createStatement();

      //Create and Save db

      stt.execute("Create Database");
      stt.execute("Use the test ");

      //Create out table
      stt.execute("DROP TABLE IF EXIST people");
      stt.execute("CREATE TABLE people("
      +"id BIGINT NOT NULL AUTO_INCREMENT,"
      +"fname VARCHAR(25), "
      +"lname VARCHAR (25),"
      +"PRIMARY KEY (id)"
      +
      " )");
      // ADD SOME ENTRIES
      stt.execute("INSERT INTO people(fname , lname ) VALUES "+
      "('Nathan','Tenderere') ('Praise ''Tenderere') ('Tadiwa
      ''Machona')");

      // Get people with surname Tenderere
      ResultSet res = stt.executeQuery("SELECT * FROM people WHERE lname =
      'Tenderere' ");

      while (res.next()) {
      System.out.println(res.getString("fname")+""+
      res.getString("lname") );
      }
      }
      catch(Exception e)
      {
      e.printStackTrace();
      }
      }

      }






      mysql






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 8 at 10:51









      toti08

      1,63611523




      1,63611523










      asked Nov 8 at 9:11









      panashe tenderere

      1




      1
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          What is the name of your database? You have your connection string as:



          String url = "jdbc:mysql://localhost:3306/ "; with a trailing whitespace before the end quote ".



          So what you're saying there is that you're trying to connect to a database with name " " which is obviously invalid, remove the trailing whitespace and include your database name in the connection string.






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204565%2fi-am-failing-to-maria-db-database-10-1-in-xampp-using-eclipse-oxygen-with-jdbc-d%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            What is the name of your database? You have your connection string as:



            String url = "jdbc:mysql://localhost:3306/ "; with a trailing whitespace before the end quote ".



            So what you're saying there is that you're trying to connect to a database with name " " which is obviously invalid, remove the trailing whitespace and include your database name in the connection string.






            share|improve this answer

























              up vote
              0
              down vote













              What is the name of your database? You have your connection string as:



              String url = "jdbc:mysql://localhost:3306/ "; with a trailing whitespace before the end quote ".



              So what you're saying there is that you're trying to connect to a database with name " " which is obviously invalid, remove the trailing whitespace and include your database name in the connection string.






              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                What is the name of your database? You have your connection string as:



                String url = "jdbc:mysql://localhost:3306/ "; with a trailing whitespace before the end quote ".



                So what you're saying there is that you're trying to connect to a database with name " " which is obviously invalid, remove the trailing whitespace and include your database name in the connection string.






                share|improve this answer












                What is the name of your database? You have your connection string as:



                String url = "jdbc:mysql://localhost:3306/ "; with a trailing whitespace before the end quote ".



                So what you're saying there is that you're trying to connect to a database with name " " which is obviously invalid, remove the trailing whitespace and include your database name in the connection string.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 8 at 9:21









                Markoorn

                774514




                774514






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204565%2fi-am-failing-to-maria-db-database-10-1-in-xampp-using-eclipse-oxygen-with-jdbc-d%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini