例如:
$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
}
有没有一种简单的方法可以知道它是否成功插入,或者在其他情况下是否成功更新和删除?
谢谢