Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ladies & Gentlemen,

I have been, thus far, successful in programmatically pulling records from a MySQL database to create a crystal report from a single table. Using the code below, I'm trying to join two tables and display their matched records on the report:

    Try
        Dim myConnectionString As String = "Server=" & FormLogin.ComboBoxServerIP.SelectedItem & ";Port=3306;Uid=parts;Password=parts;Database=accounting;"
        Dim dbConn As New MySqlConnection(myConnectionString)
        Dim dbQuery As String = "SELECT * " & _
                                "FROM cc_master a JOIN customer b ON b.accountNumber = a.customer_accountNumber;"
        Dim dbAdapter As New MySqlDataAdapter(dbQuery, dbConn)
        Dim dbTable As New DataTable
        dbAdapter.Fill(dbTable)
        Dim report As New rptCardListAll
        report.SetDataSource(dbTable)
        CrystalReportViewer1.ReportSource = report
        CrystalReportViewer1.Zoom(1)
    Catch ex As Exception
        'MsgBox(ex.Message)
    End Try

The problem I'm running into now is that when the report runs at run-time, all the db records are populated on the report except for the one field that I'm pulling from the CUSTOMER table. Below is a screen shot. Notice the blank CUSTOMER NAME - this shouldn't be blank because I know for a fact there's data in that field for every record.

The query works fine when I run it directly on the DB using MySQL Workbench, so I can't figure out why the report won't pull the requested information. Any help would be appreciated, thanks.

Report Snapshot

EDIT: Screenshot showing DataSet Visualizer during debug containing the missing field (nameCOMPANY)

Report Snapshot

share|improve this question
What's the format of this report? The 'customer name' field looks like it's in a header block, and so I wouldn't expect to source this data from the primary query, which renders the records in the body of the report. I bet if you moved that field to the body of the report it would start working (albeit repeated for every record in a way that you don't want). I've not worked with CR for many years, but hopefully that might give you some ideas to start digging. – halfer Jan 22 at 21:22
I wonder, could you attach MIN(customer_name) to that field? If the customer name is the same across all fields in the recordset, you just need an aggregate function to pull one of those copies out. – halfer Jan 22 at 21:24
Is it necessary that you put the * sign to get all the fields? why don't you put the exact field names so you'll be sure you're getting what you expected? – luchosrock Jan 22 at 21:30
@halfer - The Customer Name field (nameCUSTOMER) is an actual database field. It's placed right next to the header (which you can see). – Kismet Agbasi Jan 23 at 2:37
@luchosrock - yes I know it can be overkill to use "*" but the recordset it relatively small and I don't expect to have a heavy load on this particular DB, so I preferred to just pull all the records. – Kismet Agbasi Jan 23 at 2:39
show 16 more comments

1 Answer

up vote 1 down vote accepted

Good evening all,

So after hours of reading and searching the web, I've managed to arrive at or better yet, discover, a solution to my problem.

It appears that even though I'd created a DataSet within VS and used that to create my CR Report, I wasn't actually using that DataSet in code. Instead what I was doing was creating a new DataTable at run-time, filling that with my query result, and setting the report's datasource property to it.

What I should have been doing was to create an instance of my DataSet (the one I created earlier and used to design the report), fill it with my query result, and set the report's datasource property to it. This allowed CR to recognize and respect the table links/relationships I established earlier in the DataSet designer. I also learned that when using the DataAdapter with a query that returns multiple tables, the default naming convention is "Table" then "Table1" and so forth - that it was necessary to map these to the actual names of my tables in the DB.

So after applying all these lessons, I had to re-do my code as follows:

    Dim report As New rptCardListAll
    Dim myConnectionString As String = "Server=" & FormLogin.ComboBoxServerIP.SelectedItem & ";Port=3306;Uid=parts;Password=parts;Database=accounting;"
    Dim dbConn As New MySqlConnection(myConnectionString)
    Dim dbQuery As String = "SELECT * FROM cc_master; " & _
                            "SELECT * FROM customer;"
    Dim dbAdapter As New MySqlDataAdapter(dbQuery, dbConn)
    With dbAdapter
        .TableMappings.Add("Table", "cc_master")
        .TableMappings.Add("Table1", "customer")
    End With
    Try
        Dim dbDataSet As New accountingDataSet
        dbAdapter.Fill(dbDataSet)
        report.SetDataSource(dbDataSet)
        CrystalReportViewer1.ReportSource = report
        CrystalReportViewer1.Zoom(1)
    Catch ex As Exception
        MsgBox(ex.Message, MsgBoxStyle.OkOnly, "An Error Has Occured....")
    End Try

My report now shows the missing field "nameCOMPANY" from the customer table.

CREDIT: I want to thank @halfer, @luchosrock, and @EvilBob22 for their assistance. Also, I give credit to the authors in the following documents:

http://developer-content.emc.com/developer/downloads/CrystalReport_ADO_Dataset.pdf

How to fill Dataset with multiple tables?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.