更多“语句rs.Fields.Count返回的值是()。A.记录集的行数B.记录集的列数C.记录集的行数+1D.记录集的列数 ”相关问题
  • 第1题:

    在SQL Server2008的查询编辑器中运行下面的语句,得到的结果是( )。create table numbers(n1 int, n2 numeric(5,0), n3 numeric(4,2))go insert numbers values(1.5,1.5,1.5)select * from numbers

    A 返回2,2和1.50的记录集

    B 返回1,2和1.50的记录集

    C 返回1.5,1.5和1.5的记录集

    D create table 命令不会执行,因为无法将列n2的精度设置为0


    参考答案B

  • 第2题:

    记录集对象的()属性可返回记录集对象所包含的记录个数。
    RecordCount

  • 第3题:

    记录集对象RS创建后,为使该记录集生效,应调用记录集对象的()来打开记录集。

    AOpen

    BExcute

    CClose

    DOpenRecordset


    A

  • 第4题:

    (35)下列程序的功能是返回当前窗体的记录集

    Sub GetRecNum()

    Dim rs As Object

    Set rs=

    MsgBox rs.RecordCount

    End Sub

    为保证程序输出记录集(窗体记录源)的记录数,空白处应填入的语句是

    A)Recordset

    B)Me.Recordset

    C)RecordSource

    D)Me.RecordSource


    正确答案:B

  • 第5题:

    记录集对象的()属性可返回记录集所包含的页数,每页的记录数有记录集的()属性指定。
    Count;PageSize