用TSQLQuery刪除資料如何得知共有幾筆被刪除? |
尚未結案
|
apl
一般會員 發表:5 回覆:4 積分:1 註冊:2003-04-08 發送簡訊給我 |
|
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
看 Help 的說明, 應該也是從 RowsAffected 屬性中得知:
When the SQL dataset represents a query that does not return a result set, you cant use the RecordCount property to ascertain the number of records affected by the query. In such cases, read RowsAffected to determine how many rows were updated or deleted by the query when it executed. If no rows were updated or deleted, RowsAffected is zero. RowsAffected is ? if the SQL statement could not be executed due to an error condition. (This latter situation typically follows the throwing of an exception.) ---
Everything I say is a lie. --<-<-<@
|
apl
一般會員 發表:5 回覆:4 積分:1 註冊:2003-04-08 發送簡訊給我 |
我用RowsAffected結果都是0,但資料的確有刪除成功。
另外,上述刪除動作是在交易內進行,呼叫RowsAffected是在交易Commit之前,這有關係嗎?
//aTD: TTransactionDesc //dbxConn: TSQLConnection dbxConn.StartTransaction(aTD); try with dbxq do // dbxq: TSQLQuery begin Close; SQL.Text:='delete from TBL_TEST where ID>100'; ExecSQL(True); ShowMessage('刪除筆數=' IntToStr(RowsAffected)); end;//with dbxConn.Commit(aTD); except dbxConn.Rollback(aTD); end;ps. 文章預視時,加號(' ')好像都顯示不出來,是不是有問題? 發表人 - apl 於 2004/01/06 09:22:22 |
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
dbexpress 的 Bug, 參考:
http://groups.google.com.tw/groups?hl=zh-TW&lr=&ie=UTF-8&inlang=zh-TW&th=7a52521f0ea6c7b0&rnum=1
http://groups.google.com.tw/groups?hl=zh-TW&lr=&ie=UTF-8&inlang=zh-TW&th=6f2f271edefc2745&rnum=2 ---
Everything I say is a lie. --<-<-<@
|
apl
一般會員 發表:5 回覆:4 積分:1 註冊:2003-04-08 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |