Unable To Get Values From JTable And Insert Them In MySQL Database

Feb 7, 2014

i have a problem, im trying to get some values from a jtable (tabla) and insert them in a mysql database, so i scan the table for some values to know which of the rows i must insert ("s" or "n").

I'm able to insert few rows, but when the last row with "s" or "n" is inserted it launch me a NullPointerException and I dont know why.

public void insertar(JTable tabla, int rowt, int colt) throws ParseException{
String documento=null, cve_clie=null, fechaE=null, fechaR=null, check=null;
char d=' ',dd=' ',m=' ',mm=' ',y1=' ',y2=' ',y3=' ',y4=' ';
String chck = null;
try{
conexion = connMysql.mysql();
String squery="insert into consefact3 values (?,?,?,?,?)";
PreparedStatement pst = conexion.prepareStatement(squery);

[Code]...

View Replies


ADVERTISEMENT

How To Use Single Button To Insert And Update In Java While Using MySQL Database

Oct 29, 2014

I am developing my first Java application and the database I use is MySQL. I have created two separate buttons; one to insert new data into my database and the other to update the database when changes are made.

Each button is working perfectly, but I now want to combine both functions into just the save button. Thus, whether I am entering new data or modifying existing data, the save button should use an IF ELSE condition to decide whether to use the INSERT or UPDATE command.

My problem is, how do I write this IF ELSE statement? What should be the condition? For example;

IF(what? ){
  String sql ="Insert into Table1 (classID,className,counselorID,startDate,endDate) values (?,?,?,?,?)";
  }ELSE{
  String sql2 = "update Table1 set classID = '"+value1+"',className='"+value2+"',counselorID='"+value3+"',startDate='"+value4+"',endDate='"+value5+"'
where classID = '"+value1+"'";
}

View Replies View Related

Unable To Insert Date Into Database Using JSP Servlet

May 13, 2014

date.jsp

<form action="insertDateServlet" method="post">
Name: <input type="text" name="name">
<label for="from">Available Date</label>
<input type="text" id="from" name="from">
<label for="to">Final date</label>
<input type="text" id="to" name="upto"><br>
<input type="submit" name="submit">
</form>

blank values are going to database

insertDateServlet.java
String name= request.getParameter("name");
String Available_from = request.getParameter("from");
String Available_Upto = request.getParameter("upto");
Sql query="insert into db values(?,?,?)";

[Code]...

View Replies View Related

JSP :: Insert Values Into Database From Dynamically Added Rows

Aug 25, 2014

On jsp page i have created table with dynamically added rows now i want to insert the data from dynamic row field into database. How would I get the ids of those dynamically created rows to insert into database using hibernate.

View Replies View Related

Insert Multiple Values Of Checkbox Into Database Using JSP Servlet

May 12, 2014

As I am new in java, JSP and DATABASE...

<form action="Insert_Values_Servlet" method="post">
<label><strong>Title</strong></label>
<input type="text" name="Title" placeholder="max 50 characters"/><br>
<label><strong>Profession</strong></label>
<input type="text" name="Profession" placeholder="Ex.Manager"/> <br>
<input type="checkbox" value="LifeStyle" id="slideOne" name="check" />
<label for="slideOne">LifeStyle</label><br />

[Code]...

This is my insert.jsp page I want to insert multiple values into database Including multiple values of checkbox, other values are getting inserted but only problem at selecting multiple checkbox values in same column and radio button value in same column.

---------------------look for servlet page below----------------

Connection con = null;
ResultSet rs = null;
PreparedStatement pst = null;
int user = 0;
String User_Id1 = null;
String Other_Services = "";
String Title = request.getParameter("Title");

[Code]...

Is there any solution to insert this...By mistake in query I have followed with extra questionmark in following line This is correctline for inserting 5 values in database

String insertinfo = "INSERT into offer_data (Title,Profession, Other_Services ,Area, City) values(?,?,?,?,?)";

View Replies View Related

Insert ArrayList In A Table (MySQL)

May 1, 2014

I am facing the following scenario:

1- Take information from distinct columns from two different tables - OK
2- Insert this information into a new table.

I have created a ArrayList and inserted all the information that I need but now I am trying to put this ArrayList into the new table and I am not sure how to do it. I have done research and tests but unsuccessfully.

View Replies View Related

JSP :: Unable To Insert Date Into Excel

Apr 1, 2014

I've the below HTML Page.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
.auto-style1 {
width: 100%;

[Code] ....

But it is giving me the below Exception

java.text.ParseException: Unparseable date: "2-Apr"

View Replies View Related

Filtering MySQL Data To JTable In Particular Column

Jun 11, 2014

I have a jtable. the fields are like Product_code,Product_name,Qty,Rate in my java program.. now i want to do is when i press a first letter in my jtable under Product_name like "P" it will display the reminding Product_name which will have the starting letter of "P" like pen, pencil, peper like this i want to populate in my jtable.

View Replies View Related

How To Insert JButton Or JCheckbox In JTable

Jun 21, 2014

I'm a beginner in java. I would like to ask, how to insert JButton on JTable..

View Replies View Related

Merge Attributes Of Different MySQL Table Into JTable Netbeans

Jul 12, 2014

I've 2 tables in my MySql DB,Employees and Assets & I want to pick 2 columns Employees and one column from Assets,then how would I display them into a JTable??

View Replies View Related

Swing GUI With MySql Database?

Mar 10, 2014

I've got another project for a course and am stuck. I've debugged and tried to figure out where it is breaking, but I just can't find it. I've used this connection code block as well as the contstructors before, but this just won't work. I've got a tab that should send all of the information to a MySql database upon the click of 'Add Employee'. I've given my connection string, the addEmployee(); code, and if needed I can include the subclass code. I've got a superclass 'Employee' and a subclass 'Salaried' that uses four attributes from 'Employee'.

private void btnAddActionPerformed(java.awt.event.ActionEvent evt) {
addEmployee();
}
public void addEmployee() {
int socialSecurity = 0;
boolean error = false;

[code]....

View Replies View Related

Use JTable To Show Contents From MySQL Directly Without Mouse Clicking

Jan 31, 2014

i want to make adding into mysql database and then when i click adds, jtable show those data automatically. but it seem to get error at display part, it shows " Exception in thread "AWT-EventQueue-0" java.lang.RuntimeException: Uncompilable source code - illegal start of expression" and jtable do not show the added data but in mysql, data is properly kept.

private void jtPropertyChange(java.beans.PropertyChangeEvent evt) {
DefaultTableModel model = (DefaultTableModel) jt.getModel();
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection(url, user, password);
String sql = "SELECT * FROM `companya`";

[Code].....

the adding part seems to be fine

View Replies View Related

Swing/AWT/SWT :: How To Select Items Of JList2 From MYSQL To Show In Jtable

Jan 31, 2015

There is a Jlist(Jlist1) which is populated with the columnNames from MYSQL. Then There is another empty Jlist (Jlist2) which the user can add items from Jlist1. At this stage I want to know how I can select items of JList2 from MYSQL to show in Jtable. Because the columnnames(items) of Jlist2 is less than the Jlist1. Like Spss that when you select variables from available list then you can add some of variable to selected list and do analysis.

View Replies View Related

Connect Exe File To MySQL Database

Jul 22, 2014

I am having a problem to connect my .exe file to the database(mysql). I used launch4j to convert the jar file to .exe but the jar file can connect to the database when running inside the dist folder. When I run the .exe I am getting this error: No suitable driver found for jdbc:mysql.

View Replies View Related

Transferring Data To MySQL Database

Jul 27, 2014

try {
is = new FileInputStream(file);
data = new byte[(int) file.length()];
is.read(data);
String extension = "";
int i = file.getName().lastIndexOf('.');
if(i>0)

[Code] ....

Everything works except transferring the image file.

View Replies View Related

JDBC Connectivity With MySQL Database

Apr 24, 2014

I created a database in mysql, but I have problems communicating with the DB in java.

Here is the error :

java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/books
at java.sql.DriverManager.getConnection(DriverManager.java:604)
at java.sql.DriverManager.getConnection(DriverManager.java:221)
at displayauthors.DisplayAuthors.main(DisplayAuthors.java:30)
java.lang.NullPointerException

[Code] ....
 
HERE IS THE CODE 

public class DisplayAuthors {   
// database URL                             
   static final String DATABASE_URL = "jdbc:mysql://localhost:3306/books";
   // launch the application
   public static void main( String args[] )

[Code] ....

View Replies View Related

Display PDF File Which Is Stored In MySQL Database?

Apr 2, 2015

How to display pdf file which is stored in mysql database by using jsp and servlet ....

View Replies View Related

JDBC :: Storing Images To MySQL Database?

Mar 13, 2015

This question is not about syntax but a best way to handle something. What is the best way to store a image into a database? For example converting it into binary etc. I just wanted to get some opinions.

View Replies View Related

Greek Characters Are Stored In MySQL Database

Oct 25, 2013

I did an application with jframe which i store member personal info like name, surname etc.But when i save it to Mysql database the values are ??????.I have changed database and table and columns collation to utf8, i checked java encoding it's utf-8 but the problem remains.i have spent hours in google search but nothing that works.

View Replies View Related

Insert DateTime Into Database

Sep 3, 2014

I'm building an application to save times that I've worked, being build in java. Now. I've made a testdatabse to test if everything works till now. Here is the code of testdatabse

package Controller;
import java.sql.SQLException;
import org.joda.time.DateTime;
import org.joda.time.LocalDate;
import org.joda.time.LocalDateTime;
import org.joda.time.LocalTime;

[Code] ....

what I can't figure out is how to insert a test localtime or DateTime into the database.

Here is my model

package Model;
import java.io.Serializable;
import javax.swing.JTextArea;
import org.joda.time.DateTime;
import org.joda.time.LocalDate;
import org.joda.time.LocalDateTime;
import org.joda.time.LocalTime;
public class TimeModel implements Serializable {

[Code] .....

View Replies View Related

Importing Excel Data Into MySQL Database Through Java?

Aug 3, 2014

import data from excel sheet into mysql database through a java program. How coding will be done in Core Java.

View Replies View Related

How To Connect MySQL Database For Java Desktop Application

Jan 21, 2015

I want to develop desktop application with mysql . How to connect mysql . Any sample project or examples to learn .

View Replies View Related

Servlets :: Error Loading MySQL Database Table From JSP

Nov 5, 2014

I m new to programming and am working on the college project. I have MySQL 5.6.20, Eclipse Kepler and Apache Tomcat 7.0.54. I m trying to retrieve the whole table from MySQL schema into a jsp. All the possible things i can do, i have already tried, but none of them are working.

The following attachment contains the whole project. I have my sql connection code in Sample.java file, which i want to get working in Fetch.jsp on the Submit button click. But it shows the tomcat error as localhost:8080/Sample HTTP Status 404-/Sample ; type Status report; message /Sample; Description The requested resource is not available.

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

[Code] ....

View Replies View Related

Servlets :: Insert Data To The Database?

Apr 4, 2014

i am stucked with a little error in servlets

this is my jsp page
form.jsp
<form action="InsertData" method="post" >
username:<input type="text" name="username">
Password :<input type="password" name="password">

[Code]....

i am getting wroor page not foung 404

View Replies View Related

Servlets :: Insert Data To Database?

Aug 2, 2014

How can we insert data through java servlet?

I can insert data to table by using JSP Scriptlet easily but I have a hard time with servlet.

public class UsertToDatabase() {
public boolean inserUser(String name, String email, String pwd) throws SQLException {
PreparedStatement pstmt = null;
boolean flag = false;
System.out.println("start");
openConn();
System.out.println("start_1");
if(conn == null) {

[code]....

I am positive that the above code function fine. The problem is whenever I call UserToDB() class inside the servlet, and I got this error: java.lang.ClassNotFoundException: org.postgresql.

Driver which mean that my conn (connection) is not connected to the database but I have ensure to do so by calling openConn() before start the transaction.

This is my servlet code:

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String username = request.getParameter("username");
String email = request.getParameter("email");
String password = request.getParameter("password");
List<String> errList = new ArrayList<String>();

[code]....

View Replies View Related

How To Read In File And Insert Into Database

Oct 5, 2014

I need to read in a file then create the tables and load in the data from the files to the database. I cant seem to figure out how to load the provided text file into the database.it contains lines like this

Boston Americans,AL,Pittsburgh Pirates
New York Giants,NL,Philadelphia Athletics
etc..

The first line in the field is the name of the team that won in 1903, and the last line is the name of the team that won in 2013. Note that the World Series was not played in 1904 or 1994, so those years are skipped in the file

The program should have a menu that has the following options.

NOTE: the data for choices to e) needs to come from running sql statements on the database tables created in choice a). Not from an ArrayList in memory.

a) Convert the baseball text file to a database table. Ask the user from a dialog box, for the location of the text file. This menu item should create the tables and load up the data.

b)Let the user input a team name, and list all of the years that they won the World Series

c)Let the user input a team name, and list the number of times they won the World Series

d)Let the user input a year, and you list the winner and loser for that year.

e)Add a new winner. The user should supply the winning team name, losing team name and year. Make certain that the year does not yet exist in the table and do not duplicate the team name(s) if they are already in the database tables.

f)Exit

I have two tables teams and games:

Drop table if exists game;
Drop table if exists team;
CREATE TABLE IF NOT EXISTS game (
yearGame int(11) NOT NULL,
winTeam int(11) NOT NULL,
lossTeam int(11) NOT NULL,

[Code] ....

I cant figure out how to load the values into the tables as only some of the fields are in the text and and the league field is in a seperate table. Here is my script so far

do {
JFileChooser chooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter("Text/Java files", "txt", "java");
chooser.setFileFilter(filter);
int returnVal = chooser.showOpenDialog(null);

[Code] .....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved