/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.adempiere.base; import java.sql.PreparedStatement; import java.util.logging.Level; import org.compiere.Adempiere; import org.compiere.util.CLogMgt; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.eclipse.equinox.app.IApplication; import org.eclipse.equinox.app.IApplicationContext; /** * Sign Database Build * [ 1851190 ] Running outdated client can cause data corruption * * @author Carlos Ruiz */ public class SignDatabaseBuildApplication implements IApplication { private static final CLogger s_log = CLogger.getCLogger (SignDatabaseBuildApplication.class); /* (non-Javadoc) * @see org.eclipse.equinox.app.IApplication#start(org.eclipse.equinox.app.IApplicationContext) */ @Override public Object start(IApplicationContext context) throws Exception { Adempiere.startupEnvironment(false); CLogMgt.setLevel(Level.FINE); s_log.info("Sign Database Build"); s_log.info("-------------------"); if (! DB.isConnected()) { s_log.info("No DB Connection"); System.exit(1); } String version = Adempiere.getVersion(); s_log.info("Version = " + version); System.out.println("Version = " + version); PreparedStatement updateStmt = null; try { String upd = "UPDATE AD_System SET LastBuildInfo = ?"; updateStmt = DB.prepareStatement(upd, null); updateStmt.setString(1,version); s_log.info(upd); System.out.println(upd); // Also show the update to the console updateStmt.executeUpdate(); } catch (Exception ex) { ex.printStackTrace(); } finally { DB.close(updateStmt); } return IApplication.EXIT_OK; } /* (non-Javadoc) * @see org.eclipse.equinox.app.IApplication#stop() */ @Override public void stop() { } }