forked from willuhn/hibiscus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate0038.java
99 lines (85 loc) · 3.04 KB
/
update0038.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/updates/update0038.java,v $
* $Revision: 1.1 $
* $Date: 2012/01/02 22:32:20 $
* $Author: willuhn $
* $Locker: $
* $State: Exp $
*
* Copyright (c) by willuhn software & services
* All rights reserved
*
**********************************************************************/
import java.io.StringReader;
import java.util.HashMap;
import java.util.Map;
import de.willuhn.jameica.hbci.rmi.HBCIDBService;
import de.willuhn.jameica.hbci.server.DBSupportH2Impl;
import de.willuhn.jameica.hbci.server.DBSupportMySqlImpl;
import de.willuhn.jameica.hbci.server.DBSupportPostgreSQLImpl;
import de.willuhn.jameica.hbci.server.HBCIUpdateProvider;
import de.willuhn.logging.Logger;
import de.willuhn.sql.ScriptExecutor;
import de.willuhn.sql.version.Update;
import de.willuhn.sql.version.UpdateProvider;
import de.willuhn.util.ApplicationException;
import de.willuhn.util.I18N;
/**
* Verlaengert die Spalte "pattern" in der Tabelle "umsatztyp" von 255 auf 1000 Zeichen.
* BUGZILLA 1170
*/
public class update0038 implements Update
{
private Map statements = new HashMap();
/**
* ct
*/
public update0038()
{
// Update fuer H2
statements.put(DBSupportH2Impl.class.getName(),"ALTER TABLE umsatztyp ALTER COLUMN pattern varchar(1000) NULL;\n");
// Update fuer MySQL
statements.put(DBSupportMySqlImpl.class.getName(),"ALTER TABLE umsatztyp CHANGE pattern pattern TEXT NULL;\n");
// Update fuer PostGreSQL
statements.put(DBSupportPostgreSQLImpl.class.getName(),"ALTER TABLE umsatztyp ALTER COLUMN pattern TYPE varchar(1000);\n");
}
/**
* @see de.willuhn.sql.version.Update#execute(de.willuhn.sql.version.UpdateProvider)
*/
public void execute(UpdateProvider provider) throws ApplicationException
{
HBCIUpdateProvider myProvider = (HBCIUpdateProvider) provider;
I18N i18n = myProvider.getResources().getI18N();
String driver = HBCIDBService.SETTINGS.getString("database.driver",DBSupportH2Impl.class.getName());
String sql = (String) statements.get(driver);
if (sql == null)
throw new ApplicationException(i18n.tr("Datenbank {0} nicht wird unterstützt",driver));
try
{
ScriptExecutor.execute(new StringReader(sql),myProvider.getConnection(),myProvider.getProgressMonitor());
myProvider.getProgressMonitor().log(i18n.tr("Tabelle aktualisiert"));
}
catch (ApplicationException ae)
{
throw ae;
}
catch (Exception e)
{
Logger.error("unable to execute update",e);
throw new ApplicationException(i18n.tr("Fehler beim Ausführen des Updates"),e);
}
}
/**
* @see de.willuhn.sql.version.Update#getName()
*/
public String getName()
{
return "Datenbank-Update für Tabelle \"umsatztyp\"";
}
}
/*********************************************************************
* $Log: update0038.java,v $
* Revision 1.1 2012/01/02 22:32:20 willuhn
* @N BUGZILLA 1170
*
**********************************************************************/