需要从网格插入到mysql数据库

时间:2014-06-25 15:10:35

标签: mysql triggers grid processmaker

当我将此代码放在ProcessMaker的触发器中时,我想在我的数据库中的表'quote'中插入我的网格中的数据。 当我尝试使用普通形式时,它可以工作,但如果网格有效,我认为这是一个语法问题或foreach gridsizerows n不是,有人可以帮助我: 这是代码

   
$i=0 foreach ($i < $gridsizerows) {
   $i = i +1;
   $id = @mygrid [$i]['id'];
   $quantity = @mygrid[$i]['quantity'];
   $pu = @mygrid[$i]['possible'];
   $pt = @mygrid[$i]['pt'];
   $to = @mygrid [$i]['designation'];
   $sql = "INSERT INTO quotes (id, designation, quantity, pu, pt) VALUES ($id, $from, $pu, $pt, $amount)";
   $tmp_db = executeQuery($sql, '90911865253a802b030e577077431812');
}

1 个答案:

答案 0 :(得分:0)

您的代码看起来不错,您可能想要做的两项可能的更改如下所示。

而不是:

$sql = "INSERT INTO quotes (id, designation, quantity, pu, pt) VALUES ($id, $from, $pu, $pt, $amount)";

使用此:

$sql = "INSERT INTO quotes (id, designation, quantity, pu, pt) VALUES ('$id', '$from', '$pu', '$pt', '$amount')";

而不是这个:

$tmp_db = executeQuery($sql, '90911865253a802b030e577077431812');

使用此:

$dbConn = '90911865253a802b030e577077431812';
$tmp_db = executeQuery($sql, $dbConn);