欢迎来到HELLO素材网! 南京网站制作选择顺炫科技
丰富的DIV CSS模版、JS,jQuery特效免费提供下载
当前位置:主页 > 建站教程 > 服务器教程 >

在Recordset对象中查询记载的方法

发表于2019-04-23 11:00| 次阅读| 来源网络整理| 作者session

摘要:在Recordset对象中查询记载的方法

在Recordset对象中查询记载的方法

  无论是DAO还是ADO都有两种从Recordset对象中查询记载的方法:Find方法和Seek方法。在这两种方法中可能让你指定条件停止查询与其相应的记载,普通而言,在相反条件下,Seek方法提供了比Find方法更好的功能,由于Seek方法是基于索引的。由于这个缘由根本提供者必须支持Recordset对象上的索引,可能用Supports(adSeek)方法确定根本提供者能否支持Seek,用Supports(adIndex)方法确定提供者能否支持索引。(例如,OLE DB Provider for Microsoft Jet支持Seek和Index。),请将Seek方法和Index属性联合利用。假设Seek没有找到所需的行,将不会产生谬误,该行将被放在Recordset的开头处。执行此方法前,请先将Index属性设置为所需的索引。此方法只受端游标支持。假设Recordset对象的CursorLocation属性值为adUseClient,将不支持Seek。只要当CommandTypeEnum值为adCmdTableDirect时打开Recordset对象,才可能利用此方法。
  
  用ADO Find方法
  
  DAO蕴含了四个“Find”方法:FindFirst,FindLast,FindNext和FindPrevious.
  
  DAO方法ADO Find方法
  
  下面的一个例子示范了如何用ADO Find方法查询记载:
  
  Sub FindRecord(strDBPath As String,_
  
  strTable As String,_
  
  strCriteria As String,_
  
  strDisplayField As String)
  
  ' This procedure finds a record in the specified table by
  
  ' using the specified criteria.
  
  ' For example,to use this procedure to find records
  
  ' in the Customers table in the Northwind database
  
  ' that have" USA" in the Country field,you can
  
  ' use a line of code like this:
  
  ' FindRecord_
  
  '"c:\Program Files\Microsoft\Office\Samples\Northwind.mdb",_
  
  '"Customers","Country=' USA'","CustomerID"
  
  Dim cnn As ADODB.Connection
  
  Dim rst As ADODB.Recordset
  
  ' Open the Connection object.
  
  Set cnn=New ADODB.Connection
  
  With cnn
  
  .Provider="Microsoft.Jet.OLEDB.4.0"
  
  .Open strDBPath
  
  End With
  
  Set rst=New ADODB.Recordset
  
  With rst
  
  ' Open the table by using a scrolling
  
  ' Recordset object.
  
  .Open Source:=strTable,_
  
  ActiveConnection:=cnn,_
  
  CursorType:=adOpenKeyset,_
  
  LockType:=adLockOptimistic
  
  ' Find the first record that meets the criteria.
  
  .Find Criteria:=strCriteria,SearchDirection:=adSearchForward
  
  ' Make sure record was found(not at end of file).
  
  If Not.EOF Then
  
  ' Print the first record and all remaining
  
  ' records that meet the criteria.
  
  Do While Not.EOF
  
  Debug.Print.Fields(strDisplayField).Value
  
  ' Skip the current record and find next match.
  
  .Find Criteria:=strCriteria,SkipRecords:=1
  
  Loop
  
  Else
  
  MsgBox"Record not found"
  
  End If
  
  ' Close the Recordset object.
  
  .Close
  
  End With
  
  ' Close connection and destroy object variables.
  
  cnn.Close
  
  Set rst=Nothing
  
  Set cnn=Nothing
  
  End Sub
  
  例如,用用这个过程查询“罗期文商贸”示例中“客户”表的“国家”等于USA的记载,可能利用下面的代码:
  
  FindRecord“c:\Program Files\Microsoft Office\Office\Samples\Northwind.mdb”,_
  
  “Customers”,“Country=' USA'”,”CustomerID”
  
  (译者注:假设你装置的是简体中文版要将相应的字段名改成中文)
  
  用ADO Seek方法
  
  由于ADO Seek方法利用Index,最好是在用这个方法之前指定一个索引,可是,假设你没有指定索引,Jet database engine将用主键。
  
  假设你需求从多个字段中指定值做为搜查条件,可能用A中的Array函数传递这些值到参数KeyValues中去。假设你只有要从一个字段中指定值做为搜查条件,则不需求用Array函数传递。
  
  象Find方法一样,你可能用BOF或许EOF属性测试能否查询到记载。
  
  下面的一个例子显示了如何用ADO Seek方法查询记载:
  
  Sub SeekRecord(strDBPath As String,_
  
  strIndex As String,_
  
  strTable As String,_
  
  varKeyValues As Variant,_
  
  strDisplayField As String)
  
  ' This procedure finds a record by using
  
  ' the specified index and key values.
  
  ' For example,to use the PrimaryKey index to
  
  ' find records in the Order Details table in the
  
  ' Northwind database where the OrderID field is
  
  '10255and ProductID is16,and then display the
  
  ' value in the Quantity field,you can use a line
  
  ' of code like this:
  
  ' SeekRecord_
  
  '"c:\Program Files\Microsoft Office\Office\Samples\Northwind.mdb",_
  
  '"PrimaryKey","Order Details",Array(10255,16),"Quantity"
  
  Dim cnn As ADODB.Connection
  
  Dim rst As ADODB.Recordset
  
  ' Open the Connection object.
  
  Set cnn=New ADODB.Connection
  
  With cnn
  
  .Provider="Microsoft.Jet.OLEDB.4.0"
  
  .Open strDBPath
  
  End With
  
  Set rst=New ADODB.Recordset
  
  With rst
  
  ' Select the index used to order the
  
  ' data in the recordset.
  
  .Index=strIndex
  
  ' Open the table by using a scrolling
  
  ' Recordset object.
  
  .Open Source:=strTable,_
  
  ActiveConnection:=cnn,_
  
  CursorType:=adOpenKeyset,_
  
  LockType:=adLockOptimistic,_
  
  Options:=adCmdTableDirect
  
  ' Find the order where OrderId=10255and
  
  ' ProductId=16.
  
  .Seek KeyValues:=varKeyValues,SeekOption:=adSeekFirstEQ
  
  ' If a match is found,print the value of
  
  ' the specified field.
  
  If Not.EOF Then
  
  Debug.Print.Fields(strDisplayField).Value
  
  End If
  
  ' Close the Recordset object.
  
  .Close
  
  End With
  
  ' Close connection and destroy object variables.
  
  cnn.Close
  
  Set rst=Nothing
  
  Set cnn=Nothing
  
  End Sub
  
  例如,用主键索引查询“罗期文商贸”示例数据库中“订单明细”表的“订单编号”等于10255并且产品编号等于16的”数量”的值,可能利用下面的代码:
  
  SeekRecord“c:\Program Files\Microsoft Office\Office\Samples\Northwind.mdb”,_
  
  “PrimaryKey”,“Order Details”,Array(10255,16),”Quantity”
  
  (译者注:假设你装置的是简体中文版要将示例中引用的相应的字段名改成中文)