質問編集履歴

1

SQLの取得元を記載

2017/08/03 10:00

投稿

pilepierce
pilepierce

スコア13

test CHANGED
File without changes
test CHANGED
@@ -38,7 +38,7 @@
38
38
 
39
39
 
40
40
 
41
- String[] Recs = StringUtil.extractArrayString(Result, "\n");
41
+ String[] Recs = StringUtil.extractArrayString(Result, "\n"); //SQLから取得
42
42
 
43
43
 
44
44
 
@@ -46,15 +46,15 @@
46
46
 
47
47
 
48
48
 
49
- String[] Columns = StringUtil.extractArrayString(rec, "\t");
49
+ String[] Columns = StringUtil.extractArrayString(rec, "\t"); //SQLから取得
50
50
 
51
-
51
+ keyWebId = resultSqlMailList[RESULT_SQL_WEBSITE_ID]; //SQLから取得
52
52
 
53
53
  for(int i=0; i<3; i++) {
54
54
 
55
55
 
56
56
 
57
- keyAddress = Columns[i+1];
57
+ keyAddress = Columns[i+1]; // SQLから取得
58
58
 
59
59
 
60
60
 
@@ -74,11 +74,9 @@
74
74
 
75
75
 
76
76
 
77
- // Map更新
78
-
79
77
  Map.put(KeyInfo, List);
80
78
 
81
- }
79
+ }
82
80
 
83
81
  } // End for
84
82