Tagged Questions
1
vote
1answer
24 views
Checking for usename in mysql …If it exist then inserting into other table Otherwise the base table
Well i have the following table Table1 in MySQL workbench--
user_id int not null,autoincrement
movie _id int not null
movie_name varchar
user_name ...
0
votes
1answer
21 views
how to list all elements of class when class have foreign key of another class in jdbc servlet jsp mysql?
How can i to list a class elements in java when class have another class field?
It looks like this:
public class Grad {
private int grad_id;
private **Drzava drzava**;
private String naziv;
private ...
-3
votes
0answers
22 views
JDBC Connection error To MySQL Database inside index.jsp script [closed]
I am trying to test a connection and database post using the script below from a index.jsp file, but it is not writing into the database.
I am a Delphi / Pascal developer but do not know anything ...
1
vote
1answer
37 views
Retrieve a Regex Pattern from a MySQL table
I have a table in MySQL containing regex pattern such as : FILE\\\\d{1,4}.
But while trying to retrieve the pattern value with a Java code, it seems like the value is not in the good format.
How can I ...
0
votes
0answers
29 views
Row in MySQL Database causing error in Vaadin
I've started to test using Vaadin for consideration as a replacement technology for an existing system. As a test, I've tried connecting to the existing database, and for some of the tables it works ...
0
votes
2answers
70 views
Check if a table exists in a database [duplicate]
I am making a program where I would read data from excel file and store them in tables. Each table would have the name of the file and the data that are in the file.
At the beggining of the program I ...
0
votes
2answers
35 views
executeUpdate(String, int) method in Statement always returns 1
Can anybody tell me why the below method (executeUpdate) is always returning 1 even if I have specified to return the generated key in it? I want to get the generated key in generatedKey variable. It ...
0
votes
1answer
13 views
Pentaho Data Integration: Error connecting to database: using class org.gjt.mm.mysql.Driver
I get this error but I have my mysql-connector-java-5.1.23-bin.jar inside Pentaho\data-integration\libext\JDBC. It seems the connector is not loaded because it's using the default one. I have tried ...
0
votes
1answer
31 views
I can't delete from my SQL database using JTable
So... I want to delete a row from by database using a JTable, but I don't know why it doesn't get deleted, maybe the sintaxis of the DELETE isntruction is wrong...
borrar.addActionListener(new ...
1
vote
1answer
48 views
SQLException: No suitable driver found for jdbc:mysql://localhost:3306/dbname
I've inherited a project (and I have absolutly no experience of Java) and I'm rather stuck.
We have a server running redhat, which I needed to update one of the jar files. So I simply copied up the ...
0
votes
0answers
47 views
JDBC only returns one row when multiple should be returned?
I'm trying to run the following query via JDBC:
String sql = "SELECT * FROM myTable ORDER BY someCol ASC LIMIT 30";
PreparedStatement st =
connection.prepareStatement(sql, ...
0
votes
1answer
19 views
I'm getting java.lang.ExceptionInInitializerError when I connect to JDBC
I'm running a server using Tomcat 7.0 in Eclipse.
I have a html file to link to a Servlet file, which has a form to input the value.
When I input any value in the html file, it forwards to the servlet ...
0
votes
1answer
15 views
Specify SSL to be used for jdbc in context.xml
I would like to have my jdbc connection used in the application using Jersey and Tomcat to be secured using SSL. The mySQL server already supports SSL, I have the necessary SSL certificate file ...
4
votes
2answers
63 views
Access denied for User 'root'@'localhost' (using password: YES )
I would like to connect with my local MYSQL data base, which is installed along with XAMP server. I created a new User ie, " NewUser " and its password is "password". I given all PRIVILEGES to this ...
0
votes
1answer
21 views
Selecting every row in a table without using limit?
I'm using jdbc with mysql. I need to iterate over every row in a table (60,000 rows, table = InnoDB), and perform some processing on each.
Will mysql accept a query without a limit like that? In the ...
0
votes
2answers
49 views
Fetch Multiple Records from Mysql Database Using Where Clause
Im using a web application ,which runs on Apache Tomcat and has Mysql Database as backend
I want to retrieve multiple rows for a particular column usin the Where clause
For Example If I give select ...
0
votes
0answers
40 views
Spring MySql Datasource null
I'm attempting to connect to my MySQL server through Spring using an injected DataSource, but the DataSource is always null once the DAO class is reached.
Here is my springapp config file:
<?xml ...
0
votes
1answer
33 views
jdbc error java class trying to connect to linux mysql server
My error!
DBConnection2.java:38: unreported exception java.lang.InstantiationException; must be caught or declared to be thrown
Class.forName("com.mysql.jdbc.Driver").newInstance();
problem: ...
0
votes
0answers
78 views
SQL Error: 0, SQLState: 08S01 Communications link failure
I am getting this error (not so frequently):
2013-05-08 16:44:35,786 WARN (JDBCExceptionReporter.java:100) [org.hibernate.util.JDBCExceptionReporter, logExceptions] - SQL Error: 0, SQLState: 08S01
...
0
votes
1answer
58 views
Column count doesn't match value count at row 1 Java excel files with unknown number of columns
I am making a program to read data from excel files as the above and store them in tables. I have managed to read all the data from excel files as a string and store them in a table.
ID Name ...
0
votes
0answers
16 views
JDBC/Spring MVC/MySQL - getConnection() returns null after few days running
I've got an web app that's working just fine. After a few days running, I can't access the main page: the browser keeps loading forever. I've checked the logs and found this:
SEVERE: ...
0
votes
1answer
15 views
Issue connection to MySQL through jDBC with saiku
This is my file connections:
type=OLAP
name=ghapBI
driver=mondrian.olap4j.MondrianOlap4jDriver
...
0
votes
1answer
19 views
java.sql.SQLException: Before start of result set. Query within Result set loop how? [duplicate]
I'm trying to create a query within a results set loop but I keep getting the error "Before start of result set". I've attempted many different methods but they keep coming up with the same error.
...
0
votes
3answers
67 views
Using of Jdbc.getConnection() statement in google apps script
I have several functions in my script file, After publishing doGet function all other functions are called using the serverHandlers, And I have used the statements like below, My doubt is can we use ...
0
votes
0answers
51 views
Upload CSV fine into Mysql Database
I write 2 JSP codes for loading my csv file into my mysql database but I don't know why the data of csv file are displayed in the console of my eclipse and not in the database
Help me,
And thank you
...
-1
votes
0answers
43 views
Load CSV file into mysql database -— envoi de CSV à la base de données
Bonjour,
Je viens d'écrire 2 codes JSP pour envoyer un fichiers CSV à ma base de données Mysql, en se basant sur JEE (JSP), mais je sais pas pourquoi les données de fichiers s'affichent que dans la ...
1
vote
2answers
38 views
class not found com.mysql.jdbc.Driver jdbc when tying to connect to a Mysql Database
I ' m developping a web application in java where i m trying to connect to a MySQL database using JDBC template ( with springs dao) but i always get :
SEVERE: Servlet.service() for servlet ...
0
votes
0answers
48 views
connect google spreadsheet to amazon redshift with jdbc mysql vs postgresql
I have an amazon redshift db that supports connecting a postgresql client with jdbc
google apps scripts support connecting to a db with jdbc, but only with the mysql, ms sql, and oracle protocol, but ...
0
votes
2answers
40 views
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException. WHERE clause [closed]
I get a MySQL syntax error when running the file Aspirantes.java in NetBeans:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an
error in your SQL syntax; check the manual ...
1
vote
2answers
43 views
What is wrong with my JDBC connection pool?
I am working on a class for a MySQL database connection pool.
public class ConnectionPool
{
private static ConnectionPool pool = null;
private static DataSource dataSource = null;
public ...
2
votes
1answer
53 views
Java MySQL - Unknown Null Pointer Exception in simple MySQL Login Frame
I have a simple login screen that connects to a MySQL database. It connects just fine, but it throws a null pointer exception when it tries to execute. Here are two snippets of my code as well as the ...
0
votes
1answer
39 views
MySql expected output not coming
So I have this program which reads serial Input from COM port and places it in MySql database named asset.
Code:
import java.io.*;
import java.util.*;
import gnu.io.*;
import java.sql.*;
public ...
0
votes
1answer
27 views
how do i add a scanner so i can insert the values which are then saved on to mysql
basically I need to add another scanner input which after login in to I can add an id and name etc to my database so I don't have to use the set one in the program. the database gets updated when I ...
1
vote
1answer
19 views
serial input from COM into MySql
I am receiving some input from my COM port in java through this code.
import java.io.*;
import java.util.*;
import javax.comm.*;
public class SimpleRead implements Runnable, SerialPortEventListener ...
2
votes
1answer
70 views
Sqoop from within a Java program
I have read the questions on using Sqoop from within a Java program here, here and here.
I came up with the following, but I am stumped by a ClassNotFoundException:
import ...
-1
votes
0answers
29 views
Serial COM Port Value into MySql Databse
I am trying to enter the serial COM port value into a MySql Database.
import java.io.*;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.*;
import ...
0
votes
1answer
34 views
MySQL Batch Inserts - Crashing with OutOfMemory Exception
I am trying to insert two million rows into a MySQL table with Batch Insert. Following is the code I have.
public void addItems(List<Item> Items) {
try {
conn = getConnection();
...
0
votes
0answers
23 views
Why decrease the wait_timeout configuration parameter in MySQL? [migrated]
Question
I'm working on an application that uses a connection pool in Apache Tomcat to communicate with MySQL. I was wondering why would you want to use a smaller wait_timeout than the default of ...
0
votes
0answers
35 views
WARNING: RAR5117 : Failed to obtain/create connection from connection pool
can anyone help here,
WARNING: RAR5117 : Failed to obtain/create connection from connection pool [ mprPool ]. Reason : com.sun.appserv.connectors.internal.api.PoolingException: WEB9031: ...
-2
votes
0answers
37 views
how to insert data into phpmyadmin mysql database using jdbc [closed]
How can you insert data into a phpmyadmin mysql database using jdbc?
for instance submitting first name and last name in a java gui and saving it so its stored on the database.
0
votes
0answers
19 views
Executing .sql file containing stored procedures using JDBC [duplicate]
I have .sql file which contains the whole structure of a database(creating it, creating tables, views and stored procedures). If I didn't have a sp, I would tokenize the file by ";" and run them one ...
-2
votes
0answers
17 views
jdbc conncetion to mysql with phpmy admin
how do i connect the jdbc to mysql im using phpmyadmin
this is the code im trying to use now what part do i change in order to make it connect to my specific database
enter code here/**
import ...
0
votes
3answers
35 views
can not connect to mysql using the password
Hi i have just created a mysql user sukant1 and password also sukant1 but i am not able to connect it .please see the below
mysql> CREATE USER 'sukant1'@'%' IDENTIFIED BY 'sukant1';
Query OK, 0 ...
0
votes
1answer
21 views
ping failed error in connection testing : MySQL
I'm trying to connect to a MySQL database using hibernate.
I'm testing the connection using this :
My wamp is installed on port number 80, my database name is hibernate_test, both my username and ...
0
votes
0answers
19 views
Liferay 6.0.6 bundled with glassfish v3 ()mysql
I downloaded liferay bundled with glassfish (Liferay 6.0.6 bundled with glassfish v3) from liferay official website, I am trying to integrate it with the mysql database but failing. I am done with ...
1
vote
1answer
34 views
JDBC Query Times & Performance
I was wondering if anybody has seen/used a JDBC database performance software? Basically I am trying to compare query times across MySQL, Oracle, Postgres, Hadoop, and a data virtualization solution ...
0
votes
2answers
53 views
can not connect to remote mysql server from java application
I created java application. It works on localhost. But can't connect to remote server.
here is my code
public Connection getDBConnection() throws Exception {
Connection conn = null;
...
1
vote
0answers
34 views
Unknown column 'month' in 'field list' value not understood in jdbc
What is wrong in this code, in my database having month field, but I get an exception unknown field list month...
This is my code:
PreparedStatement pst=con.prepareStatement(
"insert into ...
0
votes
1answer
25 views
Configuring MySQL DataSource in JavaEE without actual password
I am setting up my JavaEE environment as I have other times in the past. I have always placed the actual password in the DataSource config to access the database. I am wondering if it is ...
0
votes
1answer
36 views
Mysql&MSAccess: insert into table which have an incremented field
I am sorry if there is a duplicate but I tried all ways still I can't do the insertion.
I have a table with only two fields ( ID , Name )
When I run this SQL code it must be insert a new record and ...


