Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle Date Field (Error on Insert)

Status
Not open for further replies.

wwworg

Programmer
Feb 10, 2006
35
CA
Hey guys

I am having trouble inserting a record into oracle using JSP. The error is related to the date fields. The exact error is

"javax.servlet.ServletException: ORA-01843: not a valid month".

Now here is how I am making the date

Date today1 = new Date();
int thisDay = today1.getDate();
int thisMonth = today1.getMonth()+1;
int thisYear = today1.getYear()+1900;
String goodDate = thisMonth+"/"+thisDay+"/"+thisYear;

and here is how I am inserting it

String insertQuery = "INSERT INTO JOB_REQUISITION("
+ "JBR_DEPT_TBLGRPCD, "
+ "JBR_UNITNO, "
+ "JBR_SEQ_NBR, "
+ "JBR_REQUEST_ID, "
+ "JBR_REQUEST_DT, "
+ "JBR_STS_CD, "
+ "JBR_STS_DT, "
+ "JBR_JOB_ORG_ID, "
+ "JBR_JOB_TBLGRPCD, "
+ "JBR_JOB_CLASS, "
+ "JBR_LST_UPDT_IP_ADDR, "
+ "JBR_LST_UPDT_ID, "
+ "JBR_LST_UPDT_TS) VALUES('"
+ dptGrpCode + "', '"
+ department + "', "
+ nextJobReqNum + ", '"
+ ofcLogin.getEscUser() + "', '"
+ goodDate + "', 'OP', '"
+ goodDate + "', '"
+ organization + "', '"
+ jobGrpCode + "', '', '"
+ remoteIp + "', '"
+ ofcLogin.getEscUser() + "', '"
+ goodDate + "')";

As you can see, I am trying to insert a date at 3 points. I dont understand why Oracle doesnt like the month??? Any thoughts??

Thanks

 
AFAIK Oracle does dd-MMM-yy format, unless TO_DATE() is used.

Oh btw. wrong forum [borg2].

------
"There's a man... He's bald and wears a short-sleeved shirt, and somehow he's very important to me. I think his name is Homer."
(Jack O'Neill, Stargate)
[banghead]
 
Ok, so you are saying that I should insert the date after making it dd-MMM-yy format???

Thanks
 
He's guessing that's the solution, but he is (and I am) suggesting that you should be posting in one of the ORACLE forums on this site. This forum is for Microsoft SQL Server.

-SQLBill

Posting advice: FAQ481-4875
 
No problem...happens a lot.

-SQLBill

Posting advice: FAQ481-4875
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top