beginTransaction(); $sql = "delete from $DB.eworks_ripple where num = ?"; //db만 수정 $stmh = $pdo->prepare($sql); $stmh->bindValue(1,$ripple_num,PDO::PARAM_STR); $stmh->execute(); $pdo->commit(); } catch (Exception $ex) { $pdo->rollBack(); print "오류: ".$Exception->getMessage(); } ?>