0
votes
0answers
21 views

Is it possible to open SQLite manager with inside the Java Swing window?

I'm using JDBC and SQLite db file for my Java code and I'm using Firefox add on to manage the DB. Is it any possible to use any manager with in the Swing window?
2
votes
2answers
46 views

validating JTextField data from result set

I am trying to setup a login system where when a user enters his username and password and presses the login button, his username and password are sent in an SQL statements to be matched with a User ...
0
votes
1answer
41 views

Using a value to fire Jcombobox actionlistener instead of getselectedindex?

here is the Jcombobox it has two items name and id public void ComboItem() { chooser.removeAllItems(); chooser.addItem("Please Select..."); try { String sql="select * from ...
0
votes
2answers
58 views

Java how to refresh sql outcome in jlist

I'm having a little problem with my Java application. I want to show the orders of a restaurant in my left Jlist, and the details of a selected order in the right Jlist. The orders get read in through ...
0
votes
1answer
40 views

JCombobox Listener how to enable it when item is selected?

I have a JComboBox that displays Name From database Patients_Details public void ComboItem() { chooser.removeAllItems(); chooser.addItem("Please Select..."); try { String sql="select * ...
0
votes
0answers
34 views

How to Update a table, and then still be able to bring its data to a JTextField?

I have a JFrame, in which I have a JTable, that is populated from a mysl database. Whenever I click on a row, the data from that specific row, is sent to a JTextField. The code is like this: private ...
1
vote
3answers
72 views

JFrame not displaying correctly

I am having design issues with my program. Firstly a Jframe with the a combo box is displayed. The combo box is filled with town names you choose one and hit search. The program then displays a ...
0
votes
1answer
40 views

Adding component to JTable

I want to add JButton in table. I am using table to display database records. Actually I want to add button for each record in table but, the button is not displayed on table. It doesnt show any ...
0
votes
0answers
57 views

Get all Jtable values and create database table?

here i have got all the Jtable values to String readstr; variable , but i want to use it outside the loop so that i can create database table with it, i am new to java, kindly help me out with my ...
0
votes
2answers
45 views

Not able to clear the previous table data

I have made an applet with a search engine functionality. The problem here is, when I am trying to search using a keyword first, it is displayed properly by opening a new JFrame in JTable format. But ...
-1
votes
2answers
61 views

Editable JCombobox and the key listener [closed]

how to add key event listener in jcombobox so that it accepts the whole String for ex. if i add 'S' it should search for the String that start with 's' in database .if there are no result then it ...
2
votes
1answer
58 views

how to write result to JTextArea

I have question - how to write result/ DB Select to JTextArea. My JButton´s method is: public void actionPerformed(ActionEvent evt){ try{ Class.forName("com.mysql.jdbc.Driver"); ...
-1
votes
1answer
38 views

storing the field value of text field in the ms access

I new to the swing programming using with database such as MS Access 2007 and others. Here I have two field 1. Name field 2.password field I want to add these values to database by creating the ...
-1
votes
2answers
101 views

How to Display next and previous records on clicking on next and previous button in Java?

private void cmd_nextActionPerformed(java.awt.event.ActionEvent evt) { pst=conn.prepareStatement("select * from questions where subject= ?"); pst.setString(1, "websites"); ...
1
vote
1answer
100 views

Populate jTable in JAVA

Why do I have these error? what does it mean? I only want to display all the data on my SQL DB. run: Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at ...
1
vote
5answers
139 views

Java Code for the next button

Hi this is my java code for next button. but it goes onto only 1 record i.e after the last record it moves to the 1st one only. how to move it through the entire database entries. plz provide me ...
0
votes
1answer
99 views

geting data from multiple table when selecting a row then clicking a button

I am try to run the code below but every time I run it, it don't work. Could any one please highlight what i am doing wrong? What the code should do is: I have to table in the database called r and ...
0
votes
1answer
39 views

JTable Model data not showing Updated data

my Swing application has few textfileds and Jtable. When I update the values in textFileds those values not showing on Jtable immediately after updating data. I tried using ...
0
votes
2answers
151 views

JTable not updating

I'm trying to create a table and add values to sql by using table in java swing. But in for loop i doesn't incrementing at all. I think its because of while(rs2.next()).When i place it out of for loop ...
0
votes
1answer
48 views

updating mysql using JOptionPane

I am trying to update my mysql table using JoptionPane. So the idea is to as for the id to update first then check if it exit then, ask for new value to replace it with. here is the source for the ...
1
vote
1answer
69 views

JTable Graphics not updating while adding rows to a DefaultTableModel

I have this cute problem with my prog (i'm a noob in this) i want to give my prog some animation and i want the divider in the split panel to move from gbPanel.getHeight()(MAX height) to ...
0
votes
3answers
100 views

JDBC + Swing: Not able to get table contents

I am learning JDBC, completely new to it. I know MySQL very well. I have a search form in my applet (tab 2), where I search for food. And when I click search, I want it to search for the exact food ...
0
votes
1answer
134 views

Swing, Jtable , JDBC

package com.officelog.manager; import java.awt.*; import javax.swing.*; import java.util.*; public class AdminControl implements Runnable{ public static void main(String[] args) { new ...
0
votes
1answer
91 views

TableModel, causing duplicate Database Info in a Java JFrame

I have this method setup in a JFrame to be called when the user presses a button to "Load File"; however, when the user presses the button a second time . . . they get another table underneath the ...
0
votes
3answers
93 views

Prepared Statement Database

I want to write data from a JTable into a databse, but it does not work so far. I always get an mysql Error! Someone could tell me what is wrong? public class Fussball extends JFrame { private ...
-1
votes
1answer
157 views

ResultSet returns only last row into JTable

I have done enough searches to solve my problem which i have done partly but there's this one bug that keeps disturbing me.I am trying to fetch data from a database based on a condition.I have a table ...
0
votes
1answer
155 views

How can i save the data from the cell after editing in jTable(autosave)?

I have a JTable which is populated with data from a vector and I want it to be autosaved in the database after editing the data. Vector columnNames = new Vector(); Vector data ...
0
votes
1answer
147 views

JTable doesn't refresh when my database query is executed

This is a JDBC project. Data from a MySQL database on a WAMP server is displayed in a JTable. I want a user-entered ID on my JSpinner to delete the row with that ID from the table. I made a SQL Query ...
0
votes
1answer
132 views

JTable refreshed data not displayed

This is a JDBC project. Data from a mySql database on a WAMP server is displayed in jtable. Now I want that user-entered ID on my Spinnerbutton and to delete row with that ID. I made a SQL Query and ...
0
votes
3answers
61 views

JCombobox adjusting text based on true/false

I have a JComboBox which is has values No & Yes. This is how I store it into database: jdto.setPlacement("Yes".equals(comboPlace.getSelectedItem())); then pass the jdto into my create method. ...
1
vote
1answer
769 views

Populating jTable using database data

I am trying to populate a Netbeans GUI-builder jTable using my Derby database data. I am using the following code, in my Account.java class: public DefaultTableModel getData() { try { ...
0
votes
1answer
102 views

Loading JCombobox with data selected using a WHERE clause

Im trying to load to combobox by comparing datain a table and data from myframe but evreytime my code runs I get this error message:- java.lang.NullPointerException, I also tried using a vector. ...
0
votes
1answer
278 views

Retrieving and displaying PDF document from MySql / Java

I am trying to save PDF generated by my Java program into Mysql data base and trying to retrieve / display the same inside Java program. Following code has what I have done so far, public class ...
0
votes
3answers
191 views

Java JTable not showing all rows from MySQL

I have a problem of JTable, that is when more then 1 rows are returned from MySQL table the JTable shows up only 1 record - (the last one), but when I try simple System.out.print it shows all records. ...
1
vote
1answer
153 views

JTree shows same node as child node

I am using a custom TreeModel for my JTree. I have a root node and only 1 child node that is retrieved by a query from the database. I am able to populate the tree with the desired output. However, ...
0
votes
1answer
117 views

Updating jTable - passing jTable as a parameter

I have a method in class A and I want class B (Main GUI) to call that method, but class A needs to perform some action on a jTable within class B. I do not want this method to be within class B as it ...
3
votes
5answers
104 views

Make scrollable table

I'm making this program in Java in which I sell stuff to those connected via socket. I'm loading the products and prices via JDBC just fine, but I want to display the product with the price next to ...
0
votes
1answer
975 views

Displaying Database records to JTable in JAVA swing

I am trying to display the database records in the Jtable but i m not getting the code right. I m using IDE netbeans and database is mysql. I can see the panel and the scroll pane but the table is not ...
-1
votes
2answers
67 views

Unable to perform algorithm and update table

Theres no error when run , but my event_ID is 1,2,3,4,5,6 but the console displays UPDATE crossEvent SET event_Seat = '10' WHERE event_ID =0 and my event_Seat which was 20 did not update to 10 ...
2
votes
3answers
204 views

How to structure my attendance program [closed]

I'm in the process of making an application that keeps attendance. Once I have a list of students, how would I go about displaying them all and checking whether they are present or absent. I intially ...
3
votes
2answers
105 views

JTable for rendering an unknown number of rows

I have a database query returning a large number of rows. JDBC doesn't tell you how many rows come back and there are too many rows to count them before I display it in a JTable. So the model I'm ...
2
votes
2answers
70 views

Unable to execute a query in MVC framework

From Class Model: public TableModel getTableData() { TableModel model=null; try { String sql = "SELECT eventID as 'Event ID', date as 'Date',eventName as 'Name', time as 'Start ...
-2
votes
1answer
77 views

Why the following lines don't block the EDT?

public lyridisplay (java.awt.Frame parent, boolean modal) { super(parent, modal); initComponents();//to create a JList /* folowing code inside try preforms DB operations*/ /*It ...
-1
votes
3answers
562 views

how to retrieve data from mysql using text entered in java swing text box when I press enter button?

Following is my Java Swing applet code in which I have first field as employee code and text box for entering employee code, I want to retrieve data of employee from MySql database when I will enter ...
0
votes
3answers
114 views

Recreating a JTable when updating content

I have a application that uses a JTable in it. when I add something to the database it comes into database but I am not able to recreate the JTable somehow.. I have tried to repaint(); the method that ...
0
votes
1answer
254 views

AWT-EventQueue-0” java.lang.ArrayIndexOutOfBoundsException: -1 [duplicate]

Possible Duplicate: Exception Handling “AWT-EventQueue-0” java.lang.ArrayIndexOutOfBoundsException: -1 I am having the following error: Exception in thread "AWT-EventQueue-0" ...
0
votes
1answer
202 views

Exception Handling “AWT-EventQueue-0” java.lang.ArrayIndexOutOfBoundsException: -1

I am getting the following error in my program: run: Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.Vector.elementData(Vector.java:730) at ...
0
votes
1answer
68 views

List all the tables in an Access database into a JScrollPane

Here is what I am trying to achieve: There is a set of created tables which are populated with data The user will use the GUI to view the contents of the table or drop the table. Thats it, two ...
-1
votes
2answers
105 views

nullpointerexception using class next() of resultset in the second row of database query [closed]

I'm trying to get the query of my database in my GUI window, and I was using thread class to refresh the result into my database and it was working correctly but I changed because I don't want to ...
-2
votes
1answer
324 views

create runtime jtable in swing

I want to create the JTable run time . and it should bind the data from the table of the database. For Example i want to display the list of all employees from empmaster table and the row and ...

1 2 3