例えば:
$qrInsert = "INSERT INTO DBASE1.DBO.TABLE1 VALUES ('sampVal','sampVal','sampVal')";
odbc_exec($msCon,$qrInsert);
if( 'the query if successfully executed' ){
//then do this
//if not then
}else{
//then do this
}
正常に挿入されたかどうか、または他の場合には正常に更新および削除されたかどうかを知る簡単な方法はありますか?
ありがとう