Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Roman Klimkowicz #1
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
-
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... -
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... -
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... -
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 -
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... -
Scott Mitchell [MVP] #2
Re: How to the get to number of retrieved columns?
Roman Klimkowicz wrote:
Roman, I am not familiar with MS CRM at all, so this is a shot in the> 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?
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



Reply With Quote

