Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Can any one please help me? I am new to ADO.NET. I am having problems creating reports for my database. I want to create multiple reports, each report bearing an individual record in my database table, i.e., for each record, I need to generate a report. I am only able to produce a single report for the entire database fields.

Thanks
Yours faithfully
Katumba Martin
Posted
Updated 3-Feb-10 10:58am
v2

1 solution

Your query looks too confusing. Based on what I understood, you want to display a single report for a single row of data from a datatable of a database.

It can be done at database level as well as report level. Database level is recommended. Get the single row you want based on a unique parameter like ID or so. (Form a query such that it returns what is expected) then bind the result datatable to the report.

If needed, you can form complex queries connecting various tables or even form a 'view' in the database and fetch data by using the queries.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900