How to the get to number of retrieved columns?

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default How to the get to number of retrieved columns?

    Hello everyone,

    i just implement an own search site in MS CRM 1.2, which searches in a
    MS-SQL database.

    My question is, how to get the number of retrieved columns by a SQL-query??

    Any suggestions for me?

    Thx...


    Greets,

    Roman
    Roman Klimkowicz Guest

  2. Similar Questions and Discussions

    1. Restricting number of columns in grid
      Dear All I am loading the data from xml and it is loaded to dataset. Now I want to display only one field from dataset to datagrid. In design I...
    2. How to get the number of retrieved columns when doing a SQL Query
      Hello everyone, i just implement an own search site in MS CRM 1.2, which searches in a MS-SQL database. My question is, how to get the number...
    3. Variable number of columns -> problem Update Command
      Hi, I have a datagrid control connected to a dataset filled dinamically ( variable number of columns). The data colums are created using some...
    4. number of columns
      Hi, How can I know the number of columns of the .csv files? I want to import them to the database. Thanks. Atse
    5. Unknow number of columns in repeater
      Hi. I have a datatable created at runtime that I want to display using a repeater control. The problem is that the number of columns of the...
  3. #2

    Default Re: How to the get to number of retrieved columns?

    Roman Klimkowicz wrote:
    > i just implement an own search site in MS CRM 1.2, which searches in a
    > MS-SQL database.
    >
    > My question is, how to get the number of retrieved columns by a SQL-query??
    >
    > Any suggestions for me?
    Roman, I am not familiar with MS CRM at all, so this is a shot in the
    dark. There's basically two approaches you can use:

    (1) Run a SQL query to determine the number of results, i.e.:

    SELECT COUNT(*) FROM TableName WHERE ...


    (2) Once you have the data back in a DataTable or DataSet, use the
    apporpriate properties. For example, the DataTable's Rows collection
    has a Count property that specifies how many rows are contained in the
    DataTable. I'm not certain what ADO.NET object you are using to
    retrieve the data for CRM, so I don't know if this second approach will
    be helpful or not.

    Thanks

    --

    Scott Mitchell [ASP.NET MVP]
    [email]mitchell@4GuysFromRolla.com[/email]
    [url]http://www.4GuysFromRolla.com/ScottMitchell[/url]
    Scott Mitchell [MVP] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139