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
package com.changhong.autoform.entity.sql.insert;
 
import java.util.Arrays;
import java.util.Map;
 
import org.springframework.ui.ModelMap;
 
import com.changhong.autoform.entity.sql.Sql;
 
public class Insert extends Sql{
 
    private Integer id;
    
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Insert(String tableName, Map<String, Object> fields) {
        super(tableName, fields);
    }
 
    @Override
    public String getSql() {
        StringBuilder sql = new StringBuilder();
        sql.append(" INSERT INTO ")
        .append(getTableName())
        .append('(');
        boolean isOne = true;
        StringBuilder sb = new StringBuilder();
        for (Map.Entry<String, Object> field : getFields().entrySet()) {
            if(!isOne){
                sql.append(',');
                sb.append(',');
            }
            sql.append(field.getKey());
            sb.append('?');
            isOne = false;
        }
        sql.append(") VALUES (").append(sb).append(')');
        return sql.toString();
    }
    
    public static void main(String[] args) {
        Insert i = new Insert("abc", new ModelMap("123", "abc").addAttribute("456", "def"));
        System.err.println(i.getSql());
        System.err.println(Arrays.toString(i.getParams()));
    }
}