.NETGURU
oleDbDataAdapter/DataSet - data to ListView.
Messages   Related Types
This message was discovered on microsoft.public.dotnet.framework.windowsforms.

Post a new message to this list...

Przemek
Hi.
1. Have u got any solution to add data from DataSet or oleDbDataAdapter to
ListView control, with no adding row after row but complex (big part of
data) like with DataGrid control?

2. How can I add row after row from DataSet?
3. Is reader make read operation with SQL statement, to take row after row
in real time operating on DB file? Or it is buffering data somewhere?
Thanks, for wrote.

Reply to this message...
 
    
Sijin Joseph
1. The ListView control does not support DataBinding, so you will have
to add data row after row only.

2.

foreach(DataRow row in ds.Rows)
{
    ListViewItem item = new ListViewItem();
    item.Text = row[0];
    item.SubItems.Add(row[1]);
    .
    .
    .
    item.SubItems.Add(row[n]);

    listView.Items.Add(item);
}

3. A datareader does not buffer data, the rows are read from a TDS that
is returned by SQL server.

Sijin Joseph
http://www.indiangeek.net
http://weblogs.asp.net/sjoseph

Przemek wrote:
[Original message clipped]

Reply to this message...
 
 
System.Data.DataRow
System.Data.DataSet
System.Web.UI.DataBinding
System.Web.UI.WebControls.DataGrid
System.Windows.Forms.DataGrid
System.Windows.Forms.ListView
System.Windows.Forms.ListViewItem




ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
Ad


Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification