Currently i am trying to insert a Timestamp value into a Oracle Database Timestamp Field.
Using CURRENT_TIMESTAMP i can insert data to the database
The timestamp it returns is (2013-11-20.14.50.7.832000000)
So il explain the issue. I need a created date/time (timestamp) and a expired date/time (timestamp). so i am using Java calendar to process the extra days. for example adding 365 days to get a year expiration.
Here is my current Java Date code:
public Date GetCurrentDate(HttpServletRequest request, HttpServletResponse response) throws Exception{
//Create current Date
Calendar cal = new GregorianCalendar();
Date creationDate = cal.getTime();
return creationDate;
}
Date datereturn = GetCurrentDate(request,response);
java.sql.Timestamp timestampcurrent = new Timestamp(datereturn.getTime());
timestampcurrent.setNanos(0);
Below is the code adding 2 hours to the current date to make the expiration date and adding it to a timestamp.
//Set Expired Date/Time Based from xml Evaluation (Days)
Calendar cal = Calendar.getInstance();
cal.setTime(datereturn);
cal.add(Calendar.DAY_OF_YEAR,Integer.parseInt(getServletContext().getInitParameter("EXPIRED_DAYS_EVALUATION"))); // this will add two hours
expireddatereturn = cal.getTime();
timestampexpired = new Timestamp(expireddatereturn.getTime());
timestampexpired.setNanos(0);
logText.info(timestampexpired + " " + timestampcurrent .toString());
so i now have two timestamps, "timestampcurrent" (current date) and "timestampexpired" (expiration date).
i am trying to insert these values into a oracle database but i recieve a error:
String sqlInsertData ="INSERT INTO EC_TABLE" +
"(licenseid, customername, description, servername,licensetype, username,password, createdDateTime,ExpiredDateTime)" +
" VALUES ('"+LicenseID+"','"+CustomerName+"','"+Description+"','"+ServerName+"','"+LicenseType+"','"+EncryptedUsername+"','"+EncryptedPassword+"','"+timestampcurrent+"','"+timestampexpired+"')";
THE ERROR IS : ORA-01843: not a valid month
Been trying to fix this for hours but i cannot find the issue!. please help!.
additional information:
logText Returns:
logText.info(timestampcurrent + " \ " + timestampcurrent.toString());
INFO [http-8080-2] (ecsystem.java:233) - 2013-11-20 15:34:55.0 \ 2013-11-20 15:34:55.0
logText.info(timestampexpired + " \ " + timestampexpired.toString());
INFO [http-8080-2] (ecsystem.java:233) - 2013-11-22 15:34:55.0 \ 2013-11-22 15:34:55.0
Hope all this information helps!