在VB中,常用的recordset對(duì)象方法有:
- Open:打開(kāi)一個(gè)數(shù)據(jù)庫(kù)連接,并指定要訪問(wèn)的表或查詢的名稱。
recordset.Open "SELECT * FROM table_name", connection
- Close:關(guān)閉一個(gè)打開(kāi)的recordset對(duì)象。
recordset.Close
- MoveFirst:將記錄指針移動(dòng)到記錄集的第一個(gè)記錄。
recordset.MoveFirst
- MoveLast:將記錄指針移動(dòng)到記錄集的最后一個(gè)記錄。
recordset.MoveLast
- MoveNext:將記錄指針向后移動(dòng)到記錄集中的下一條記錄。
recordset.MoveNext
- MovePrevious:將記錄指針向前移動(dòng)到記錄集中的上一條記錄。
recordset.MovePrevious
- Find:根據(jù)指定的條件在記錄集中查找符合條件的記錄。
recordset.Find "field_name = 'value'"
- AddNew:在記錄集中添加一條新記錄。
recordset.AddNew
- Update:更新當(dāng)前記錄集中的記錄。
recordset.Update
- Delete:刪除當(dāng)前記錄集中的記錄。
recordset.Delete
- GetString:返回記錄集中的數(shù)據(jù)作為字符串。
strData = recordset.GetString
- GetRows:返回記錄集中的數(shù)據(jù)作為數(shù)組。
arrData = recordset.GetRows