質問編集履歴
1
エラー処理がはしょりすぎていたので、ちゃんと書きました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
connection.query("select count(*) as count from test", function(err,result){
|
20
20
|
|
21
|
-
throw err;
|
21
|
+
if(err) throw err;
|
22
22
|
|
23
23
|
cnt = result[0].count; // 出力は2とする
|
24
24
|
|