Problem - Java | Dream.In.Code
Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]4 Replies - 67 Views - Last Post: Today, 12:27 PM
#1
Reputation: 0
- Posts: 8
- Joined: 19-May 13
Posted Today, 10:17 AM
I have used the following codes,but data is not storing in sql database withing changing the date every time. I want to store multiple data on the same date. Please help....Method obj=new Method(); int r=0; try { Date dateFromDateChooser = jDateChooser1.getDate(); String date = String.format("%1$tY-%1$tm-%1$td", dateFromDateChooser); if (date.equalsIgnoreCase("null-null-null")) { JOptionPane.showMessageDialog(null,"Select a Date"); return; } System.out.println("second value..."+date); r=obj.insertdb(date, particular, unitPrice, quantity, total, issued_quantity, balanceStock, remarks); System.out.println("r.."+r); if(r>0) { JOptionPane.showMessageDialog(null, "Saved"); } else { JOptionPane.showMessageDialog(null, "Not Saved"); } } catch(Exception e) { System.out.println("Message "+ e.getMessage()); } }
*Edited: topic title changed to be at least a bit descriptive
This post has been edited by pbl: Today, 12:28 PM
Reason for edit:: Fixed code tags
Is This A Good Question/Topic? 0
Replies To: Problem using Date as String in SQL database
#2
Reputation: 5439
- Posts: 8,756
- Joined: 19-March 11
Re: Problem using Date as String in SQL database
Posted Today, 10:30 AM
Method obj=new Method();
How are we going to help you figure out your code if we have no idea what sort of thing "obj" might be, or what its insertdb method might do?
What is a Method object and why didn't you call it that, whatever it is?
catch(Exception e)
Don't do this. If you have exceptions that you're trying to catch, catch them and handle them. Also, a try block should never wrap anything more than the danger zone - just a few lines, not the whole method.
#3
Reputation: 1085
- Posts: 3,390
- Joined: 12-December 12
Re: Problem using Date as String in SQL database
Posted Today, 10:41 AM
"Problem" is a pretty useless title for anyone searching in future (and just in general). It's like me sending an email with the subject "email"This post has been edited by andrewsw: Today, 10:42 AM
#4
Reputation: 2117
- Posts: 8,818
- Joined: 20-September 08
Re: Problem using Date as String in SQL database
Posted Today, 10:54 AM
Storing dates as strings is not only inefficient but makes manipulation of them difficult. Store them as datetime types
#5
Reputation: 8032
- Posts: 31,191
- Joined: 06-March 08
Re: Problem using Date as String in SQL database
Posted Today, 12:27 PM
and what is obj ? and what is insertDb(0 ?
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321736-problem/
pulitzer prize winners nfl 2012 schedule gmail down tim lincecum ryan oneal file taxes online tupac shakur
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home