//提交事務
Else
MessageBox(
ROLLBACK USING SQLCA;
//事務回滾
Return
End If
Blb_tmp=ole_
UPDATEBLOB bmptable SET bmpdata=:blb_tmp
WHERE bmptable
USING SQLCA; //更新存放圖片的字段
If SQLCA
COMMIT USING SQLCA;
//提交事務
MessageBox(
Else
MessageBox(
ROLLBACK USING SQLCA;
//事務回滾
Return
End If
UPDATE bmptable SET bmpdata=
WHERE bmptable
USING SQLCA;
//bmpno為要刪除的圖片編號
If SQLCA
COMMIT USING SQLCA;
//提交事務
Else
MessageBox(
ROLLBACK USING SQLCA;
//事務回滾
Return
End If
DELETE FROM bmptable
WHERE bmptable
USING SQLCA;
If SQLCA
COMMIT USING SQLCA;
//提交事務
MessageBox(
Else
MessageBox(
ROLLBACK USING SQLCA;
//事務回滾
Return
End If
//需要提供一個圖片編號存放在變量bmpno中
SetNull(blb_tmp)
SELECTBLOB bmptable
FROM bmptable
WHERE bmptable
USING SQLCA;
If Not IsNull(blb_tmp) Then
ole_
//雙擊OLE控制喚醒OLE服務器即可編輯圖片
End If
使用PB編程時
編輯推薦
ASP
Microsoft
[
From:http://tw.wingwit.com/Article/program/PB/201311/24626.html