Tagged Questions
0
votes
0answers
31 views
redirecting based on information you set in database
I have an java web application that sets a title to users as either manager employee or client and I want all three login pages to be different for each title. my login system is very simple and I was ...
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 ...
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
25 views
ServletContextListener Issue | HTTP Status 404 -
It has been observed that whenever I add a Listener class to my web.xml, the whole Web application stops functioning. Please find the code below :
web.xml
<listener>
...
0
votes
0answers
57 views
Connection pool in jsp
I have copied tomcat-dbcp.jar from tomcat lib dir to jdk's jre\lib\ext dir
and in context.xml file of my application is coded like below:
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
0answers
44 views
Oracle JDBC Error with Gson Serialization
I'm currently using Gson to serialize the results of some SQL Queries into JSON, but I'm getting errors with the Oracle JDBC driver, it seems.
This is the class I'm using to serialize the data.
...
0
votes
2answers
118 views
class not found exception com.mysql.jdbc.driver
File structure of my project is:
-src
|
-pkg
|
-CoreServlet.java(servlet)
-Main.java
-Core.java(jdbc code is here)
...
1
vote
1answer
193 views
Is it a better Idea to put jdbc connection code in servlet class?
I am new in servlet and database.I have a core.java file in which I have a JDBC connection code.In the same directory I have a coreServlet.java file which take form value from HTML page.My questions ...
1
vote
1answer
62 views
SQL Query Works in phpMyAdmin but not in Java
I have the following SQL Query:
SELECT `Activity`.`userid` , `Goal`.`goalid` , `Goal`.`activityid` , `Goal`.`exercise` , `Exercise`.`name` , `Goal`.`target` , `ActivityData`.`dataid` , ...
-1
votes
1answer
46 views
SQL CallablStatement - The index is out of range [closed]
I'm using java servlets with database and I always get error with "The index 2 is out of range." I just want to send a parameters name and message from a form and through procedure save into database. ...
3
votes
2answers
99 views
How to synchronize database access in Spring
I encounter a problem on accessing and updating data on mySQL in Spring framework, and I want to ask everyone the most efficient way to lock a TABLE row.
Let's say I have two tables: one records all ...
0
votes
3answers
269 views
How to add the JDBC mysql driver to an Eclipse project?
I have downloaded the mysql-connector-java-5.1.24-bin.jar
I have created a lib folder in my project and put the jar in there.
properties of project->build path->add JAR and selected the JAR above.
I ...
0
votes
1answer
53 views
Servlet.service() for servlet [com.jagrut.GroupServlet] in context with path [/jaagrut] threw exception [closed]
Why this Error is coming..
Mar 29, 2013 2:04:26 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet [com.jagrut.GroupServlet] in context with path ...
0
votes
1answer
106 views
Mysql query returns single record in servlet. How do I print it?
The code I've written is
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import ...
0
votes
1answer
357 views
How to get images from database using struts 2 framework?
i have jsp which has takes some information from database along with blob image.but to get image i written servlet which take id of image and do some operation on image like converting blob to binary ...
1
vote
1answer
146 views
How to combine a simple Servlet with JDBC? Code results in ClassNotFoundException
I have written a simple JDBC and it works well (I run it in command prompt using java and javac).
I also have written a simple HelloworldServlet and it works well (using Apache Tomcat 7.0).
I access ...
0
votes
1answer
149 views
uploading image in db2 with a servlet
i am trying to upload image into my db2 database.i have copied the libraries required
db2jcc.jar in web-inf/lib
<form action="Upload" method="post" enctype="multipart/form-data">
ID : <input ...
0
votes
0answers
37 views
Where to put servlet files in cpanel
I made a servlet that reads values from a database hosted on my site. It worked in Eclipse, but now how do I put it on my site so that people can access it?
0
votes
1answer
148 views
Servlet + EJB + JDBC CRUD application
I am pretty new with java web application and I am not sure if I am on the right path. I tried reading articles regarding the proper way of using these three components ( Servlet, EJB, JDBC) but they ...
0
votes
1answer
71 views
Java Servlets + JDBC + Postgres: How does it all interact?
I'm having trouble wrapping my head around how to use servlets properly
I've set up a postgres database, and downloaded a JDBC driver for it.
What I want to have is my webpages post to the servlet, ...
0
votes
0answers
126 views
ServletContextListener error
Hi ihave the below code for servletcontextlistener.
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import ...
0
votes
0answers
70 views
conversion from data type varbinary to date is not allowed
I am trying to update date field by null value using spring framework and l am getting an exception. If date value is passed for the same it gets saved. Getting an error when class for data source ...
0
votes
3answers
71 views
To get the selected rows form database table by entering a value in form
PreparedStatement stmt=con.prepareStatement("select * from test where testname like '?%'");
stmt.setString(1,keyword);
rset=stmt.executeQuery();
while(rset.next()){
...
0
votes
1answer
129 views
Unable to update mysql databse through servlets
I wrote a servlet file SignUp.java and a helper file Updater.java. SignUp gathers the user info from a form filled by the user. Then it sends the info to Updater so that Updater updates the table in ...
0
votes
0answers
530 views
How to store image on disk (using servelets) but path in database (oracle)
I want to store image in a folder on my disk but want to save its path in database.And then retrieve or display the same image using the path stored in database.
Here is my code:
JSP
<form ...
1
vote
9answers
293 views
java.lang.OutOfMemoryError:
I'm trying to create video files from the bytes retrieved from the database. The program was worked well before few hours. After uploading a large file, When I try to retrieve it, It is producing the ...
0
votes
1answer
97 views
How to insert a data from one table to another table selecting it for a combobox?
I tried inserting data for selecting product class idcat class
category with a combo but nothing any ideas please
-CLASSES
public class Categoria {
private int idcat;
private String name;
private ...
-1
votes
1answer
105 views
JDBC SQL server online cannot connect
I'm using a servlet to try to connect to a mysql database on my website, but it always says that it timed out and that there is a communications link failure.
final String DB_URL = ...
0
votes
1answer
56 views
Retrieving a sequence in succeeding sessions
I have generated a sequence (in SQLDbx) and by using .currval, obtained and displayed it the a .jsp page. However when I want to display that same sequence in other jsp pages, the query (select ...
1
vote
1answer
109 views
How to configure Connection Pool for Java Web Project?
I've been doing a research on connection pool with JDBC api and classes. But still I don't know how to configure a Connection Pool class for a java web project. As you may know, the Connection Pool is ...
0
votes
1answer
268 views
Insert Data using JDBC to a MySQL database through a method
I have a form and I want to send the data to a database. How can I pass the request data through the method parameters and send it to the Database?
int status = InsertCustomer(fName, mName, lName , ...
0
votes
2answers
161 views
implement type 4 jdbc driver in DB2
In my project I'm using few configurations in context.xml and servlet.xml, where I'm setting
<ResourceLink
global="jdbc/mydatasource"
name="jdbc/mydatasource"
...
1
vote
1answer
194 views
sqlite database connectivity in servlet
I am writing jdbc code in Servlet
But I am getting an error
java.lang.ClassNotFoundException: org.sqlite.JDBC
I have included a sqlitejdbc-v056.jar file
Still I am getting an error.
If i write the ...
2
votes
1answer
469 views
HTTP Status 500 - Java Runtime Environment (JRE) version 1.7 is not supported by this driver
I am trying to access MS SQL server 2005 from a servlet file. I am using JDBC 4.0 driver.
I have already added the JAR files sqljdbc.jar and sqljdbc4.jar files to my Tomcat /lib folder.
But while ...
1
vote
2answers
170 views
NullpointerException with connection object creating SQL statement
I am getting a nullpointerexception with this line of code
Statement stmt = conn.createStatement();
The servlet that uses this was working ok a few days back and I recovered from a previous version ...
-1
votes
1answer
47 views
Designing DataSource Connection for Concurrency
This code below is the "base" servlet we use for our project:
public class MyServlet extends Servlet {
private static final long serialVersionUID = 1L;
protected Connection conn;
/**
...
0
votes
3answers
428 views
java.sql.SQLException: Invalid state, the CallableStatement object is closed
The code below generates this exception:
java.sql.SQLException: Invalid state, the CallableStatement object is closed.
at ...
0
votes
1answer
40 views
Sql errorjava.sql.SQLIntegrityConstraintViolationException
I have written a Java servlet program and run it through local Tomcat 7, But it was showing following error :
Sql errorjava.sql.SQLIntegrityConstraintViolationException: ORA-01400: cannot insert ...
0
votes
4answers
305 views
HTTP Status 500 - null
I wrote a java servlet program but when i run it, It was showing the Error HTTP Status 500 - null What it means ;
My source code is on this page.
The error was
HTTP Status 500 - null
type Exception ...
0
votes
2answers
495 views
HTTP Status 500 - java.util.Date cannot be cast to java.sql.Date
I wrote a java servlet program but when i run it, It was showing the error HTTP Status 500 - java.util.Date cannot be cast to java.sql.Date I searched how to any other way for inserting date type to ...
1
vote
1answer
8k views
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
I wrote a java servlet program but when i run it, It was showing the Exception java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver My code is
package skypark;
import java.io.*;
import ...
1
vote
1answer
203 views
Java Servlet SQL tables
The problem that I am having is that I am to create a servlet that will get data from three tables (SQL) and print them out in a html table.
The structure of the tables are as follows:
...
0
votes
0answers
79 views
unable to send an email and update Databaseat a time
i've the below code in my servlet for updating database and for sending E-Mail
package Mail_M;
import java.io.IOException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import ...
0
votes
2answers
166 views
MySQL jdbc driver ClassNotFoundException: com.mysql.jdbc.Driver
After googling a lot and seeing the answers here on SO of similar questions, I am still getting this error of ClassNotFoundException.
I tried the method here and here.
My apache tomcat webapps ...
1
vote
1answer
45 views
Load balanceing for database
I am going to start working on a huge application.
before that I want to prepare my self for it.
This is a application which will be used world wide, and there will be big number of users using it at ...
-1
votes
2answers
2k views
login validate servlet from mysql database
I tried to create a simple login form which takes username&password,checks with the mysql database table.Pardon me I'm a beginner to this java stuff...If its matches its re-directed to home ...
2
votes
2answers
96 views
Database connections for servlet threads?
With regards to Servlets being multithreaded by default. Does each Servlet instantiate a database connection or is the connection shared between all threads of that servlet?
I am using JDBC as an ...
0
votes
1answer
113 views
Share Database Connection in Servlet
I tried to share a Jdbc Connection object in the ServletContext, but it's not a good idea! Now i think to share a Jdbc for each Servlet! in manner that all and only the same Servlet's threads share ...
0
votes
0answers
2k views
Retrieving data from oracle database using servlet
I have created a servlet with database-access(oracle) to display the employee details on web page.
I am able to see html lines preceding the connection but not able to see the data that i have ...
1
vote
1answer
245 views
How to store the string array into databse?
In my java servlet application!
i am getting the checkbox selected values
as in the form of String[] by using the
String[] skills = request.getParameterValues("skills");
Now i have to store this ...

