356 reputation
219
bio website
location Web
age
visits member for 9 months
seen yesterday
stats profile views 97

Trolling around ^_^


May
17
accepted Not able to override Bootstrap properties in a particular div
May
3
awarded  Popular Question
May
3
asked Not able to override Bootstrap properties in a particular div
Apr
19
comment Not able to clear the previous table data
I tried checking with rs and rsmd too, but not getting it.
Apr
19
comment Not able to clear the previous table data
I fixed it, thank you anyways. The alternative method worked too. Could you please help me display an error if the object to be searched for is not found in the table. I've updated the code of what I've tried but it's not working.
Apr
19
comment Not able to clear the previous table data
Check the updated code after try-catch. I am checking if the data is null, meaning nothing is there, then open a pop up, else open a new frame and show the details. But it opens a new frame, prints the column names always instead.
Apr
19
revised Not able to clear the previous table data
added 761 characters in body
Apr
19
comment Not able to clear the previous table data
After the try catch statement, I put if(data==null) {joption thing} else {the new jframe, new table and all}; I put DataNotFoundException after the try statement. Eclipse gives errors.
Apr
19
comment Not able to clear the previous table data
How do I implement a status thing here and how is it related? Could you please explain. I tried checking for the data to be empty, if empty then throw a pop up else show the table. Doesn't seem to be working. Can you tell the condition to check if the data I am searching for is empty or not?
Apr
19
accepted Not able to clear the previous table data
Apr
19
revised Not able to clear the previous table data
deleted 149 characters in body
Apr
19
comment Not able to clear the previous table data
Any idea how to display an error if something to be searched for is not found? A custom message sort of.
Apr
19
comment Not able to clear the previous table data
Yes, added columnNames.clear(); before the for-loop. Thanks a ton. :)
Apr
19
comment Not able to clear the previous table data
Yes, it cleared the previous data, but the column names appear twice horizontally.
Apr
19
asked Not able to clear the previous table data
Apr
7
revised Failing to push local repository to github
deleted 100 characters in body
Mar
22
accepted JDBC + Swing: Not able to get table contents
Mar
22
comment JDBC + Swing: Not able to get table contents
Okay, I placed it inside the try statement and I got my output. THANKS A TON :)
Mar
22
comment JDBC + Swing: Not able to get table contents
Okay, when I put the query as "SELECT * FROM delicious where name = 'Tandoori Roti'" directly, it gives me the correct output. So the problem is with s=field.getText(); how should I place it and where?
Mar
22
comment JDBC + Swing: Not able to get table contents
Wait, I have a text field. I am entering something, I storing that value in the 's' variable. And then I am using it in the query. But according to the preparedstatement thing, Stefan asked me to use the "?" mark alone. Neverthless, I tried both. Same thing, tables with field names but not the values.