-5
votes
0answers
25 views

Setting mysql connection on first run of the software [closed]

How can I set database settings like ip dbname port username pass on the first run of my software? Because all the PCs don't have the exact ip, port, username and pass that my computer has. to be ...
-1
votes
1answer
30 views

How to retrieve input values from the database in struts2 [closed]

I have some values stored in my database namely accountno, username, password, repassword, amount, address, phone. when I input accountno, username, password, values through my jsp page,if it is ...
-2
votes
0answers
27 views

Nullpointerexception and 500 status code ocurred while running simple servlet connecting database

I want to create a servlet that connects to database and check the corresponding u/name and password and return a response. However, when I run the project in server(apache) it throws me with the ...
0
votes
1answer
36 views

JDBC ResultSet Cusor Position

I have inherited some third party code using an old version of org.gjt.mm.mysql.Driver jdbc mysql driver class against a mysql database. The code appears to perform an executeQuery, storing the ...
0
votes
0answers
19 views

How to make user managed transaction in jBoss

I'm using JBossV5 as my application server. It provides the connection for mysql and I'm using jdbc in my application. I want to manually commit transaction. I know it is not possible to use ...
0
votes
1answer
23 views

Database Connection does not release after idle time out in glassfish

i am using Glassfish 3 & mysql5.6.11. i have created JDBC connection pool in glassfish. Initial and Minimum Pool Size: - 8 Maximum Pool Size: -30 Pool Resize Quantity:- 10 Idle Timeout: - 60 ...
0
votes
1answer
30 views

Capture values from JDBC requests and use for next query

I'm trying to use Jmeter with about 10 queries per thread. All I want each thread to do is Insert into a player table using mysql auto increment. Then I want to use mysql SELECT last_insert_id(); ...
0
votes
0answers
22 views

Elasticsearch river, convert longitude latitude to geo_point

I'm using the MySQL JPrante JDBC River plugin for Elasticsearch to index data from MySQL. In a record set I have the fields longitude (float), latitude (float), pin (POINT), how I can preset them to ...
0
votes
1answer
21 views

Code throws SEVERE: No value specified for parameter 1 excetion

I am trying to find a list of items from my database but it throws an exception. My code and error are as following , all field types are correct. Code System.out.println("2"); try { ...
-2
votes
1answer
29 views

Quick way to connect to a remote MySql Database in Java [closed]

I wanted to connect to a database from within a Java-based framework. This essentially involves writing code to connect to a database. However, I cannot modify any build.xml file or so such as in ...
0
votes
0answers
27 views

Squirrel client can't connect to MySQL instance: bad driver?

I am using Squirrel to connect to a MySQL instance being hosted on CloudBees. I downloaded what I believe is the correct JDBC driver, and installed it to Squirrel's lib directory at: ...
-1
votes
0answers
33 views

How to get data from mysql database when remote acces is denied [closed]

I need to get data from a MySQL database located on a server where I'm hosting a site. I retrieved a username and a password for the database from the company that hosts my website. I do not have the ...
0
votes
2answers
93 views

How to insert Date into MySQL Database table in Java?

How do I insert date, without time, to MySQL database table? I tried these codes but I get the following exception: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in ...
-1
votes
0answers
20 views

how to use multiple queries in java using jdbc

how to use multiple queries in java using jdbc 1.how to use this below two queries in the method without deleting the already existing query in method query 1: insert into ...
0
votes
0answers
43 views

Using Groovy's ${…} with SQL

I have a question about using a string in a JDBC SQL query. Here are two examples and I expect both to work, but they don't. Working version ... tabl = "Action" query = "SHOW FULL COLUMNS ...
1
vote
1answer
28 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
31 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
39 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
39 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
1answer
80 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
42 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
39 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
44 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
56 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
53 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
22 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
20 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
85 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
23 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
68 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
57 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
42 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
2answers
106 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
71 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
20 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
23 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
21 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
77 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
56 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 ...
-2
votes
0answers
51 views

Load CSV file into mysql database -— envoi de CSV à la base de données [closed]

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
3answers
44 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
53 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
47 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
56 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
40 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
29 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
21 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
76 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 2 3 4 5 33