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();
}
}
}
mysql
add a comment |
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();
}
}
}
mysql
add a comment |
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();
}
}
}
mysql
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
mysql
edited Nov 8 at 10:51
toti08
1,63611523
1,63611523
asked Nov 8 at 9:11
panashe tenderere
1
1
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Nov 8 at 9:21
Markoorn
774514
774514
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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