thanks all!
i reinstalled postgreSQL(version 8.2.4), and recreated the database
and in cmd lne ,executed "ant run-install"
then startup the ofbiz
In the java source
public static String ModifyEvent(HttpServletRequest request,
HttpServletResponse response) throws Exception {
Map returnMap = new HashMap();
boolean BeginTrans=false;
String workEffortId="";
try {
GenericDelegator delegator =
GenericDelegator.getGenericDelegator("default");
Map FieldMap=UtilHttp.getParameterMap(request);
BeginTrans=TransactionUtil.begin();
GenericValue
WorkEffort=delegator.makeValidValue("WorkEffort",FieldMap);
workEffortId=delegator.getNextSeqId("WorkEffort");
WorkEffort.set("workEffortId",workEffortId);
WorkEffort.set("lastStatusUpdate",UtilDateTime.nowTimestamp());
delegator.create(WorkEffort);
}catch(Excepion e){
...
}
and error occured.
--
View this message in context:
http://www.nabble.com/Problems-w--postgresql-8.1-407.jdbc3.jar-tf2676311.html#a11460011
Sent from the OFBiz - User mailing list archive at Nabble.com.