我无法从我的网页向我的Sqlite表添加行,并且令人惊讶的是它也没有抛出异常。当我尝试从表中添加sql查询中的数据时。
在人员表中打印插入,但未插入任何数据。
try {
$q1 = $db->prepare('INSERT INTO persons(person_id,person_name,User_Id,Profile_Pair_Id,CallType_no,Home_Floor,Start_Date,End_Date) values(?,?,?,?,?,?,?,?)');
$q1->execute(array($person_id,$name,$uid,$pc,$ct,$Home_Floor, $Start_Dt,$End_Dt));
echo 'insert done in Persons table'. '<br>';
}
catch(Exception $e) {
echo 'Message while inserting in Persons table: ' .$e->getMessage();
}