zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.autoform.entity.sql.update;
 
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
 
import com.changhong.autoform.entity.sql.Sql;
 
public class UpdateTable extends Sql{
 
    private String tableName;
 
    private  Map<String, Object> fields;
 
    public UpdateTable(String tableName, Map<String, Object> fields) {
        super(tableName, fields);
        this.tableName = tableName;
        this.fields = fields;
    }
 
    @Override
    public String getSql() {
        StringBuilder sql = new StringBuilder();
        sql.append(" ALTER TABLE ").append(getTableName());
        Set<Entry<String, Object>> entrySet = fields.entrySet();
        if(entrySet.size()> 0) {
            for (Entry<String, Object> entry : entrySet) {
                sql.append(" ADD COLUMN ")
                .append(entry.getKey() )
                .append(" "+entry.getValue())
                .append(" NULL AFTER PARENTDATAROWNUM")
                .append(',');
                
            }
            sql.deleteCharAt(sql.length()-1);
        }
        sql.append(";");
        int i = 0;
        return sql.toString();
    }
 
    @Override
    public Object[] getParams() {
        Object[] arr = new Object[]{};
        return arr;
    }
 
    public Map<String, Object> getFields() {
        return fields;
    }
 
    public void setFields(Map<String, Object> fields) {
        this.fields = fields;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
    
}