VB6 有没有像c# dataset 的记录集那样,脱机(不连数据库) 操作数据表???, VB的recordset一定要连上数据库的
2个回答
展开全部
vb的recordset不一定要连上数据库的。
看看我的博客:
http://blog.csdn.net/chinaboyzyq/article/details/5422713
再看看以下操作:
Private Sub Command1_Click()
Dim rst1 As New ADODB.Recordset '以下我建立一个无连接Recordset
rst1.ActiveConnection = Nothing
rst1.CursorLocation = adUseClient
rst1.CursorType = adOpenStatic
rst1.LockType = adLockOptimistic
rst1.Fields.Append "x1", adVarChar, 50 '添加字段
rst1.Fields.Append "y1", adInteger
rst1.Open '打开记录集
rst1.AddNew '添加一条空记录
rst1(0) = "asdf" '修改当前记录
rst1(1) = 1234
rst1.Update '更新记录集
Debug.Print rst1(0), rst1(1)
End Sub
看看我的博客:
http://blog.csdn.net/chinaboyzyq/article/details/5422713
再看看以下操作:
Private Sub Command1_Click()
Dim rst1 As New ADODB.Recordset '以下我建立一个无连接Recordset
rst1.ActiveConnection = Nothing
rst1.CursorLocation = adUseClient
rst1.CursorType = adOpenStatic
rst1.LockType = adLockOptimistic
rst1.Fields.Append "x1", adVarChar, 50 '添加字段
rst1.Fields.Append "y1", adInteger
rst1.Open '打开记录集
rst1.AddNew '添加一条空记录
rst1(0) = "asdf" '修改当前记录
rst1(1) = 1234
rst1.Update '更新记录集
Debug.Print rst1(0), rst1(1)
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询