回答編集履歴
1
answer
CHANGED
@@ -18,4 +18,7 @@
|
|
18
18
|
}
|
19
19
|
with control_db.cursor(con_db, True) as cursor:
|
20
20
|
cursor.execute(sql,param)
|
21
|
-
|
21
|
+
dict = cursor.fetchone()
|
22
|
+
|
23
|
+
if dict['cnt'] == 0:
|
24
|
+
エラー文追加処理
|